2020-12-11 14:41:48 +00:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2021-05-22 20:04:17 +00:00
|
|
|
compileSdkVersion(AndroidConfig.compileSdk)
|
2020-12-11 14:41:48 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2021-05-22 20:04:17 +00:00
|
|
|
minSdkVersion(AndroidConfig.minSdk)
|
2020-12-11 14:41:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
named("main") {
|
|
|
|
manifest.srcFile("AndroidManifest.xml")
|
|
|
|
res.setSrcDirs(listOf("res"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
libraryVariants.all {
|
|
|
|
generateBuildConfigProvider?.configure {
|
|
|
|
enabled = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|