mirror of
https://github.com/InsanusMokrassar/KotlinMultiplatformProjectTemplate.git
synced 2025-09-02 22:59:44 +00:00
32 lines
779 B
Groovy
32 lines
779 B
Groovy
kotlin {
|
|
androidTarget {
|
|
publishAllLibraryVariants()
|
|
compilations.all {
|
|
kotlinOptions {
|
|
jvmTarget = "17"
|
|
}
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
androidUnitTest {
|
|
dependencies {
|
|
implementation kotlin('test-junit')
|
|
implementation libs.android.test.junit
|
|
implementation libs.android.test.espresso
|
|
}
|
|
}
|
|
androidInstrumentedTest {
|
|
dependencies {
|
|
implementation kotlin('test-junit')
|
|
implementation libs.android.test.junit
|
|
implementation libs.android.test.espresso
|
|
}
|
|
}
|
|
|
|
androidMain.dependsOn jvmMain
|
|
}
|
|
}
|
|
|
|
apply from: "$defaultAndroidSettings"
|