美文网首页
A problem was found with the con

A problem was found with the con

作者: 里予心 | 来源:发表于2024-03-25 11:16 被阅读0次

打包apk时碰到错误,解决办法在module:app的build.gradle文件中和dependencies{}平级的地方添加

tasks.configureEach { task ->
    if (task.name.matches("\\w*compile\\w*Kotlin")) {
        task.dependsOn('greendao')
    }
    if (task.name.matches("\\w*kaptGenerateStubs\\w*Kotlin")) {
        task.dependsOn('greendao')
    }

    if (task.name.matches("\\w*kapt\\w*Kotlin")) {
        task.dependsOn('greendao')
    }
}

相关文章

网友评论

      本文标题:A problem was found with the con

      本文链接:https://www.haomeiwen.com/subject/rsvdtjtx.html