Files
F7cloud Mobile fd17df80a8 Initial import of f7cloud-mobile native Android app.
Kotlin/Compose client for F7cloud (mail, files, talk, calendar, contacts, tasks, support).
Current version: 0.5.113 (build 121).
2026-07-07 12:05:18 +03:00

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',
]
}
}
}