mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-12-23 09:07:14 +00:00
53 lines
1.3 KiB
Plaintext
53 lines
1.3 KiB
Plaintext
project.version = "$version"
|
|
project.group = "$group"
|
|
|
|
apply from: "$publishGradlePath"
|
|
|
|
kotlin {
|
|
android {}
|
|
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
implementation kotlin('stdlib')
|
|
}
|
|
}
|
|
commonTest {
|
|
dependencies {
|
|
implementation kotlin('test-common')
|
|
implementation kotlin('test-annotations-common')
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion "$android_compileSdkVersion".toInteger()
|
|
defaultConfig {
|
|
minSdkVersion "$android_minSdkVersion".toInteger()
|
|
targetSdkVersion "$android_compileSdkVersion".toInteger()
|
|
versionCode "${android_code_version}".toInteger()
|
|
versionName "$version"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
}
|
|
}
|
|
|
|
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()
|
|
}
|
|
}
|