美文网首页
打包apk提示"xxx" is not tr

打包apk提示"xxx" is not tr

作者: 秋天的田野 | 来源:发表于2017-05-16 15:29 被阅读36次

在build.gradle添加

lintOptions{

checkReleaseBuilds false

abortOnError false

}

如:

apply plugin: 'com.android.application'

android {

compileSdkVersion 21

buildToolsVersion "21.1.2"

defaultConfig {

applicationId "com.czz.sharedemo"

minSdkVersion 11

targetSdkVersion 21

versionCode 1

versionName "1.0"

}

buildTypes {

release {

minifyEnabled false

proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'

}

}

lintOptions{

checkReleaseBuilds false

abortOnError false

}

packagingOptions {

exclude 'META-INF/NOTICE'

exclude 'META-INF/LICENSE'

}

}

dependencies {

compile fileTree(dir: 'libs', include: ['*.jar'])

compile 'com.android.support:appcompat-v7:21.0.3'

}

相关文章

网友评论

      本文标题:打包apk提示"xxx" is not tr

      本文链接:https://www.haomeiwen.com/subject/fvulxxtx.html