Artem Kopan
08/27/2020, 8:23 PMplugins {
id "org.jetbrains.kotlin.multiplatform"
id("com.android.library")
}
android {
compileSdkVersion(29)
defaultConfig {
minSdkVersion(19)
targetSdkVersion(29)
}
sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
}
kotlin {
android()
iosX64("ios")
}
Ivann Ruiz
08/27/2020, 10:17 PMandroidMain
folder in the project
view, but not in the android
view. Starting to think it could be a AS bug...romtsn
09/01/2020, 3:05 PMIvann Ruiz
09/02/2020, 4:53 PMmain/src/java
instead of androidMain/src/kotlin
and it works fine as you can see in the pic. I think it can be redundant to have stuff in androidMain
, It does makes sense though, might as well use the main folder for Android stuff.Artem Kopan
09/03/2020, 12:19 PMIvann Ruiz
09/03/2020, 6:37 PMandroidMain
target in android
view