https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
t

Tony

02/03/2020, 8:33 PM
Hi, I am having troubles with getting Parcelize/Parcelable onto my MPP. My build gradle has
Copy code
kotlin {
    jvm {
        apply plugin: 'kotlin-android-extensions'

        ...

        androidExtensions {
            experimental = true
        }
    }
}
Can someone help me?
k

Kris Wong

02/03/2020, 8:45 PM
you are trying to use android things for a JVM target
t

Tony

02/03/2020, 8:47 PM
I think jvm is just a name for the module
k

Kris Wong

02/03/2020, 8:53 PM
that is incorrect
that's a target - a JVM target
t

Tony

02/03/2020, 9:23 PM
ah gotcha!
3 Views