basher
04/14/2019, 9:43 PMcom.android.library
plugin) in my mpp project:
kotlin {
targets {
targetFromPreset(presets.android, 'android') {
compilations.main {
kotlinOptions {
jvmTarget = "1.8"
}
}
}
}
}
Saying it can't find the main
method for compilations. is there somewhere else I should be setting the JVM target?basher
04/14/2019, 9:48 PMandroid {
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}