zoukankan      html  css  js  c++  java
  • Lint found fatal errors while assembling a release target问题的解决方案

    此问题发生在编译为 release 版本时,出现错误提示如下:

    Lint found fatal errors while assembling a release target.
    
    To proceed, either fix the issues identified by lint, or modify your build script as follows:
    ...
    android {
        lintOptions {
            checkReleaseBuilds false
            // Or, if you prefer, you can continue to check for errors in release builds,
            // but continue the build even when errors are found:
            abortOnError false
        }
    }
    ...

    按照上述提示添加后,重新编译还遇到这个提示,请尝试按照以下方法解决:

    android {
        buildTypes {
            release {
                //在这里添加:
                lintOptions {
                    checkReleaseBuilds false
                    abortOnError false
                }
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            }
        }
    }
  • 相关阅读:
    拓扑编号
    奇怪的梦境
    奖金
    最优布线问题
    亲戚
    最小花费
    Dijkstra算法 最短路径 (部分)
    Floyed算法 最短路径
    P1164 小A点菜(背包方案数模板)
    P1049 装箱问题
  • 原文地址:https://www.cnblogs.com/ring1992/p/11313560.html
Copyright © 2011-2022 走看看