mirror of
https://github.com/InsanusMokrassar/TelegramBotApiLibraries.git
synced 2024-10-31 21:43:51 +00:00
41 lines
1.0 KiB
Groovy
41 lines
1.0 KiB
Groovy
|
apply plugin: 'com.getkeepsafe.dexcount'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion "$android_compileSdkVersion".toInteger()
|
||
|
buildToolsVersion "$android_buildToolsVersion"
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion "$android_minSdkVersion".toInteger()
|
||
|
targetSdkVersion "$android_compileSdkVersion".toInteger()
|
||
|
versionCode "${android_code_version}".toInteger()
|
||
|
versionName "$version"
|
||
|
}
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
}
|
||
|
debug {
|
||
|
debuggable true
|
||
|
}
|
||
|
}
|
||
|
|
||
|
packagingOptions {
|
||
|
exclude 'META-INF/kotlinx-serialization-runtime.kotlin_module'
|
||
|
exclude 'META-INF/kotlinx-serialization-cbor.kotlin_module'
|
||
|
exclude 'META-INF/kotlinx-serialization-properties.kotlin_module'
|
||
|
}
|
||
|
|
||
|
compileOptions {
|
||
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||
|
targetCompatibility JavaVersion.VERSION_1_8
|
||
|
}
|
||
|
|
||
|
kotlinOptions {
|
||
|
jvmTarget = JavaVersion.VERSION_1_8.toString()
|
||
|
}
|
||
|
|
||
|
sourceSets {
|
||
|
main.java.srcDirs += 'src/main/kotlin'
|
||
|
}
|
||
|
}
|