2016-08-04 58 views
6

Tôi đang tạo ra một ứng dụng android & đang chạy trên mực nước API 21. Nhưng không chạy trên dưới mức API 21.Thực hiện thất bại cho nhiệm vụ ': Ứng dụng: transformClassesWithJarMergingForDebug

Dưới đây là bản ghi lỗi:

Lỗi : Thực hiện không thành công cho tác vụ ': app: transformClassesWithJarMergingForDebug'. com.android.build.api.transform.TransformException: java.util.zip.ZipException: lặp lại entry: android/support/v4/accessibilityservice/AccessibilityServiceInfoCompat $ AccessibilityServiceInfoVersionImpl.class Giúp tôi qua

Dưới đây là mã gradle của tôi :

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' 
    } 
} 

Trả lời

1

Đầu tiên Compile xây dựng với

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

Trong AndroidMan của bạn ifest.xml thêm dòng này android: tên

<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" 
    > 

Và Trong bạn build.gradle cũng thêm

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

cùng lỗi @Er. Arjun Saini –

+0

có thể chỉ cho ứng dụng của bạn build.gradle –

+0

bạn cũng nên được multiDexEnabled đúng –

Các vấn đề liên quan