
* Rename AndroidConfig to Config * Move base AndroidManifest.xml * Make fallback icons into an Android module * Add example of how to only load a single extension in Gradle project
25 lines
432 B
Plaintext
25 lines
432 B
Plaintext
plugins {
|
|
id("com.android.library")
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion(Config.compileSdk)
|
|
|
|
defaultConfig {
|
|
minSdkVersion(Config.minSdk)
|
|
}
|
|
|
|
sourceSets {
|
|
named("main") {
|
|
manifest.srcFile("AndroidManifest.xml")
|
|
res.setSrcDirs(listOf("res"))
|
|
}
|
|
}
|
|
|
|
libraryVariants.all {
|
|
generateBuildConfigProvider?.configure {
|
|
enabled = false
|
|
}
|
|
}
|
|
}
|