Errors while building APK. You can find the errors in the 'Messages' view.打包时问题

此问题有几种情况

一:Execution failed for task ':app:transformClassesAndResourcesWithProguardForRelease',也是本人遇到的问题

        在项目的 build 文件中将 minifyEnabled 设置为 false ,就Ok了。

二:Execution failed for task ':app:lintVitalRelease'.

    在app的build.gradle里的android{}中添加

android{
    lintOptions {
        checkReleaseBuilds false
        abortOnError false
    }
}
本人也是老菜鸟一个,把自己遇的简单问题却花了我好久的问题记录一下,希望兄弟们不要别简单的问题耗去大量时间。


你可能感兴趣的:(Errors while building APK. You can find the errors in the 'Messages' view.打包时问题)