zl程序教程

您现在的位置是:首页 >  其他

当前栏目

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

错误打包 Error of 提示 ID type APK
2023-09-27 14:27:47 时间

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"
    }