thana
08/07/2019, 12:28 PMplugins {
id "org.jetbrains.kotlin.multiplatform" version '1.3.41' apply false
}
now i finally wanted to try out the kotlin dsl and creaed a child module with a build.gradle.kts where i use
apply(plugin = "org.jetbrains.kotlin.multiplatform")
but now the kotlin { }
block cannot be resolved what am i doing wrong?thana
08/07/2019, 12:32 PMplugins {
kotlin("multiplatform")
}
it worksalex009
08/07/2019, 12:32 PMapply<BinderAdapterPlugin>()
configure<com.icerockdev.binderadapter.Configuration> {
classesPackage = "com.getchallenge.features.feed.browse"
dataBindingPackage = "com.getchallenge.features.feed.browse"
sourceSet = "androidMain"
}
thana
08/07/2019, 12:38 PMalex009
08/07/2019, 12:39 PMalex009
08/07/2019, 12:40 PMapply false
- use it 🙂thana
08/07/2019, 12:40 PM