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)
    }
}

 

posted on 2025-11-04 21:38  少杨  阅读(34)  评论(0)    收藏  举报