当我尝试运行我的应用程序时,我会收到以下错误:
Error:Execution failed for task ':app:transformClassesAndResourcesWithProguardForDebug'.
java.io.IOException:请先纠正上述警告。
This is my Gradle file
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.2"
defaultConfig {
applicationId "xxxxxxxxxxxxx"
minSdkVersion 14
targetSdkVersion 24
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
minifyEnabled true
shrinkResources true
}
}
}
repositories {
mavenCentral()
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.2.1'
compile 'com.android.support:design:24.2.1'
compile 'com.google.android.gms:play-services:9.8.00'
compile 'com.google.android.gms:play-services-auth:9.8.00'
compile 'com.facebook.android:facebook-android-sdk:4.0.0'
compile 'com.google.android.gms:play-services-ads:9.8.00'
compile 'com.firebase:firebase-client-android:2.3.1'
compile 'com.google.android.gms:play-services-gcm:9.8.00'
}
apply plugin: 'com.google.gms.google-services'
任何人都可以说我为什么会收到这个错误?
它显示一些jar文件是重复的,但我不知道要删除哪个依赖项。
答案 0 :(得分:14)
将以下内容添加到您的ProGuard规则中
-ignorewarnings
答案 1 :(得分:0)
删除
debug {
minifyEnabled true
}
这对我有用
答案 2 :(得分:0)
将以下内容添加到调试部分:
{{1}}
如果要将minifyEnabled设置为true,则需要定义proguardFiles。如果您不需要minifyEnabled,只需将其设置为false即可。然后你不需要添加proguardFiles。
答案 3 :(得分:0)
我遇到了同样的问题。因此,我检查了第三方并在我的应用程序级别Gradle中更新了第三方Gradle版本。它为我工作。实际的第三方版本已被弃用。造成问题的原因。希望它能对某人有所帮助。
答案 4 :(得分:0)
添加useProguard true
对我有用
答案 5 :(得分:-1)
删除minifyEnabled true
如果您在编译应用时遇到错误,请从debug
开始。这次正在运行debug
部分。
buildTypes {
debug {
minifyEnabled true// (<--Remove)
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
删除minifyEnabled true
如果您在创建最终发布api时遇到错误,请从发布中获取。
buildTypes {
release {
minifyEnabled true// (<--Remove)
proguardFiles getDefaultProguardFile('proguard android.txt'), 'proguard-rules.pro'
}
}