Damiano Giusti
01/29/2019, 4:46 PMcom.android.libray
plugin, allowing the kotlin-multiplatform
plugin create the presets.android
extension. You’ll need to create a main
folder in your source root and add a valid AndroidManifest file, specifying the package name that will be usedribesg
01/30/2019, 8:59 AMmain
folder
android {
…
sourceSets {
val main by getting {
setRoot("src/androidMain")
}
val test by getting {
setRoot("src/androidTest")
}
}
…
}
(This is the android plugin block and not the kotlin MPP android target block)Damiano Giusti
01/30/2019, 9:08 AM