2016-08-04 7 views
6

Ich bin ein Android App erstellt & ist über API-Ebene 21 läuft aber nicht unter API-Ebene läuft am 21.Ausführung fehlgeschlagen für Aufgabe ‚: App: transformClassesWithJarMergingForDebug

Hier ist Fehlerprotokoll:

Fehler : Ausführung fehlgeschlagen für Task ': app: transformClassesWithJarMergingForDebug'. com.android.build.api.transform.TransformException: java.util.zip.ZipException: doppelte Eintrag: android/support/v4/accessibilityservice/AccessibilityServiceInfoCompat $ AccessibilityServiceInfoVersionImpl.class mir Hilfe durch

Unten finden Sie meine gradle Code

apply plugin: 'com.android.application' 
android { 
    compileSdkVersion 23 
    buildToolsVersion "23.0.3" 

    defaultConfig { 
     applicationId "*******" 
     minSdkVersion 16 
     targetSdkVersion 23 
     multiDexEnabled true 
     versionCode 1 
     versionName "1.0" 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      useProguard true 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
     } 
    } 
    dexOptions { 
     javaMaxHeapSize "4g" 
     preDexLibraries = false 
    } 
    packagingOptions { 
     exclude 'META-INF/NOTICE.txt' // will not include NOTICE file 
     exclude 'META-INF/LICENSE.txt' // will not include LICENSE file 
    } 
} 

dependencies { 
    compile fileTree(exclude: 'android-support-*.jar', dir: 'libs', include: ['*.jar']) 
    testCompile 'junit:junit:4.12' 
    compile project(':simple-crop-image-lib') 
    // compile 'com.github.navasmdc:MaterialDesign:+' 
    compile project(':material-login') 
    compile 'com.android.support:multidex:1.0.1' 
    compile ('com.android.support:appcompat-v7:23.4.0'){ 
     exclude module: 'support-v4' 
    } 
} 

Antwort

1

Erste Compile die Build mit

compile 'com.android.support:multidex:1.0.1'

In Your AndroidMan: ifest.xml diese Zeilen android hinzufügen: Name

<application 
    android:allowBackup="true" 
    android:icon="@mipmap/ic_launcher" 
    android:label="@string/app_name" 
    android:supportsRtl="true" 
    android:theme="@style/AppTheme" 
    android:name="android.support.multidex.MultiDexApplication" 
    > 

und in Ihrer build.gradle auch

dexOptions { 
    //incremental = true; 
    preDexLibraries = false 
    javaMaxHeapSize "4g" 
} 


packagingOptions { 
    exclude 'META-INF/NOTICE.txt' // will not include NOTICE file 
    exclude 'META-INF/LICENSE.txt' // will not include LICENSE file 
} 
+0

gleichen Fehler @Er hinzufügen. Arjun saini –

+0

Kann zeigen Sie Ihre App build.gradle –

+0

Sie auch wahr sein sollte multiDexEnabled –

Verwandte Themen