1

Ich bin ein signiertes apk in Android Studio zu erzeugen, aber ich folgende Störung zu erhalten:kann nicht unterzeichnet apk in Android Studio erzeugen, Fehler immer

Error:Execution failed for task ':msapp_V_520:transformClassesWithJarMergingForRelease'. com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: android/support/annotation/ColorRes.class

Das ist mein build.gradle

buildscript { 
    repositories { 
     maven { url 'https://maven.fabric.io/public' } 
    } 

    dependencies { 
     classpath 'io.fabric.tools:gradle:1.+' 
    } 
} 
apply plugin: 'com.android.application' 
apply plugin: 'io.fabric' 

repositories { 
    maven { url 'https://maven.fabric.io/public' } 
} 


android { 
    signingConfigs { 
     release { 
     } 
    } 
    configurations { 
     all*.exclude group: 'com.android.support', module: 'support-v4' 
    } 

    compileSdkVersion 23 
    buildToolsVersion '23.0.3' 
    defaultConfig { 
     applicationId "com.mouthshut" 
     minSdkVersion 14 
     targetSdkVersion 23 
     multiDexEnabled true 
     useLibrary 'org.apache.http.legacy' 
     compileOptions { 
      sourceCompatibility JavaVersion.VERSION_1_7 
      targetCompatibility JavaVersion.VERSION_1_7 
     } 
    } 
    dexOptions { 
     incremental true 
     javaMaxHeapSize "4g" 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      shrinkResources false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 

     } 
    } 
} 

dependencies { 

    compile project(':comnostra13exampleuniversalimageloaderHomeActivity') 
    compile project(':nineoldandroid') 
    compile project(':libraryActionbar') 
    compile project(':pullToRefresh') 
    compile project(':facebook') 
    compile 'com.google.android.gms:play-services:+' 
    compile 'com.android.support:multidex:1.0.+' 
    compile files('libs/AF-Android-SDK-v2.3.1.19.jar') 
    compile files('libs/classes.jar') 
    compile files('libs/CleverTapAndroidSDK-v1-20150903.jar') 
    compile files('libs/YouTubeAndroidPlayerApi.jar') 
    //compile 'com.github.adrian110288:LoadIndicators:83ce610325' 
    compile project(':LoadIndicatorLibrary') 
    compile 'com.nispok:snackbar:2.11.+' 
    compile('com.crashlytics.sdk.android:crashlytics:[email protected]') { 
     transitive = true; 
    } 
    compile 'com.android.support:appcompat-v7:23.3.0' 
} 
+0

Es besteht ein Problem mit Ihren Abhängigkeiten. Überprüfen Sie bitte das. –

+0

@MadhukarHebbar Bitte sehen Sie meine bearbeitete Frage Es enthält meine Build.Gradle-Datei und bitte geben Sie einen Vorschlag für das Problem. – user2107940

+0

Facebook SDK kann Konflikt mit der Support-Bibliothek. Chek [hier] (http://StackOverflow.com/Questions/17693651/Facebook-Integration-android-Support-V4-Content-Localbroadcastmanager) und [hier] (http: // stackoverflow.com/questions/26966843/java-util-zip-zipexception-duplicate-entry-during-packagealldebugclassesformult). Es kann dir helfen. –

Antwort

0

Schließen Sie das Modul support-v4 aus, wenn Sie die facebook Abhängigkeit hinzufügen.

compile (project(':facebook')) { 
    exclude module: 'support-v4' 
} 
+0

Ich habe versucht, Ihre Lösung, aber es funktioniert nicht. – user2107940