jvmTarget: String' is deprecated. Please migrate to the compilerOptions DSL. More details are here: https://kotl.in/u1r8ln
android 編譯提示警告
jvmTarget: String' is deprecated. Please migrate to the compilerOptions DSL. More details are here: https://kotl.in/u1r8ln
把 kotlinOptions 轉為 compilerOptions
kotlinOptions {
jvmTarget = "11"
}
kotlin {
compilerOptions {
jvmTarget.set(JvmTarget.JVM_11)
}
}
浙公網安備 33010602011771號