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"