Error:Error: Expected resource of type id [ResourceType]打包apk是提示错误

来源:互联网 发布:少女前线数据获取失败 编辑:程序博客网 时间:2024/04/29 16:30

Error:Error: Expected resource of type id [ResourceType]打包apk是提示错误

解决办法:


android {    compileSdkVersion 19    buildToolsVersion "23.0.3"    defaultConfig {        minSdkVersion 7        targetSdkVersion 23        compileOptions {            sourceCompatibility JavaVersion.VERSION_1_5            targetCompatibility JavaVersion.VERSION_1_5        }    }  


在build中添加

  lintOptions {        disable "ResourceType"    }


即可打包apk,添加方式如下:


android {    compileSdkVersion 19    buildToolsVersion "23.0.3"    defaultConfig {        minSdkVersion 7        targetSdkVersion 23        compileOptions {            sourceCompatibility JavaVersion.VERSION_1_5            targetCompatibility JavaVersion.VERSION_1_5        }    }    lintOptions {        disable "ResourceType"    }

阅读全文
0 0