我正在尝试在Android Studio中构建我的应用的发布版本,无论我尝试什么,我都会收到错误消息:
任务执行失败 '应用程序:transformClassesWithJarMergingForRelease&#39 ;. > com.android.build.api.transform.TransformException: java.util.zip.ZipException:重复条目: COM /机器人/凌空/请求$ Priority.class。
我启用了multidex,清理并重建了我的应用,但没有任何工作。 以下是我的gradle构建:
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "carter.streakly"
minSdkVersion 19
targetSdkVersion 24
versionCode 1
versionName "1.0"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.0.0'
compile 'com.android.support:design:24.0.0'
compile 'com.google.android.gms:play-services-appindexing:8.1.0'
compile 'com.google.android.gms:play-services:9.2.1'
compile 'com.mcxiaoke.volley:library-aar:1.0.0'
compile 'com.android.volley:volley:1.0.0'
compile 'org.jetbrains:annotations-java5:15.0'
compile 'com.android.support:support-v4:24.0.0'
compile 'com.android.support:multidex:1.0.0'
}
答案 0 :(得分:0)
在build.gradle
依赖项中,您包含了两个库:
compile 'com.mcxiaoke.volley:library-aar:1.0.0'
compile 'com.android.volley:volley:1.0.0'
其中com.mcxiaoke.volley
基本上是官方Google图书馆的一个分支,因此您只应使用其中一个。另请注意,根据mcxiaoke/android-volley READ.ME
:
(...)此项目已弃用且不再维护,请使用jCenter的正式版。
compile 'com.android.volley:volley:1.0.0'