fd17df80a8
Kotlin/Compose client for F7cloud (mail, files, talk, calendar, contacts, tasks, support). Current version: 0.5.113 (build 121).
26 lines
797 B
Groovy
26 lines
797 B
Groovy
// F7cloud embed overrides — applied when f7cloudAsLibrary=true in gradle.properties.
|
|
android {
|
|
defaultConfig {
|
|
buildConfigField "String", "APPLICATION_ID", "\"ru.forbion.f7cloud.mobile\""
|
|
buildConfigField "String", "VERSION_NAME", "\"${rootProject.findProperty('f7TalkVersionName') ?: '0.5.28'}\""
|
|
buildConfigField "boolean", "DEBUG", "true"
|
|
}
|
|
sourceSets {
|
|
f7 {
|
|
java.srcDir 'src/gplay/java'
|
|
}
|
|
}
|
|
packaging {
|
|
resources {
|
|
excludes += [
|
|
'META-INF/LICENSE.txt',
|
|
'META-INF/LICENSE',
|
|
'META-INF/NOTICE.txt',
|
|
'META-INF/NOTICE',
|
|
'META-INF/DEPENDENCIES',
|
|
'META-INF/rxjava.properties',
|
|
]
|
|
}
|
|
}
|
|
}
|