you need to use 1.2.30 EAPs for that to work
# android
j
you need to use 1.2.30 EAPs for that to work
j
Okay, let me try that. Thanks.
BTW I see your post on YouTrack here and it looks like it was rolled into 1.2.30 as you mentioned. https://youtrack.jetbrains.com/issue/KT-18462
Upgrading to the 1.2.30-EAP Gradle plugin worked for me. For those interested. *In your top level build.gradle add
maven { url "<https://dl.bintray.com/kotlin/kotlin-eap>" }
to your respositories. Update your Kotlin and gradle plugin version to
1.2.30-eap-47
. *In your android subproject build.gradle add
apply plugin: 'kotlin-platform-android'
You can now reference the common library code using
expectedBy project(':common')
👍 4