Error:Error: Expected resource of type id [ResourceType]打包apk是提示错误
Error:Error: Expected resource of type id [ResourceType]打包apk是提示错误
在build中添加
lintOptions { disable"ResourceType"**}**
实例:
buildTypes {
    release {
        minifyEnabledfalse
        proguardFiles getDefaultProguardFile('proguard-android.txt'),'proguard-rules.pro'
    }
    lintOptions {
        disable"ResourceType"
    }
} 
             
             
             
             
            