当我生成APK的发布版本时,会出现问题。我已经查看了这个question并尝试了所有的事情,但问题仍然存在请指出我正确的方向
错误
错误:执行失败 任务:应用程序:transformClassesWithJarMergingForRelease”。 com.android.build.api.transform.TransformException: java.util.zip.ZipException:重复条目: 机器人/支持/设计/插件/ CoordinatorLayout $ 1.class
gradle这个
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
buildToolsVersion "27.0.3"
dexOptions {
javaMaxHeapSize "4g"
}
defaultConfig {
applicationId "com.example.wildstone.cv_maker"
minSdkVersion 19
versionCode 1
versionName "1.0"
targetSdkVersion 27
multiDexEnabled true //important
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:27.+'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:cardview-v7:26.0.0-alpha1'
compile 'com.android.support:design:26.0.0-alpha1'
compile 'com.android.support:multidex:1.0.1'
compile 'com.google.android.gms:play-services:7.5.0'
compile 'com.itextpdf:itextg:5.5.10'
testCompile 'junit:junit:4.12'
}
答案 0 :(得分:2)
当您使用不同版本的SDK和支持库时,通常会发生这种情况。 替换这些
的版本compile 'com.android.support:cardview-v7:26.0.0-alpha1'
compile 'com.android.support:design:26.0.0-alpha1'
到
compile 'com.android.support:cardview-v7:27.1.0'
compile 'com.android.support:design:27.1.0'
它应该有用。
答案 1 :(得分:0)
用27's替换你的26岁