簡體   English   中英

錯誤生成APK錯誤:任務':app:transformClassesWithDexForRelease'的執行失敗

[英]Error Build APK Error:Execution failed for task ':app:transformClassesWithDexForRelease'

錯誤Bulid APK該代碼有什么問題? 火力地堡? 我嘗試清理並重建。 但是我有這個錯誤。

錯誤:任務':app:transformClassesWithJarMergingForDebug'的執行失敗。 com.android.build.api.transform.TransformException:java.util.zip.ZipException:重復項:javax / inject / Inject.class

我的應用程式gradle檔案:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    buildToolsVersion "26.0.1"
    defaultConfig {
        applicationId "myapp.over.app"
        minSdkVersion 15
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        vectorDrawables.useSupportLibrary = true

        multiDexEnabled true
        }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    packagingOptions {
        exclude 'META-INF/DEPENDENCIES.txt'
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/NOTICE.txt'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/DEPENDENCIES'
        exclude 'META-INF/notice.txt'
        exclude 'META-INF/license.txt'
        exclude 'META-INF/dependencies.txt'
        exclude 'META-INF/LGPL2.1'
    }
}

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:26.+'
    compile 'com.android.support:design:26.+'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    compile 'com.google.firebase:firebase-auth:10.0.1'
    compile 'com.google.firebase:firebase-database:10.0.1'
    compile 'me.anwarshahriar:calligrapher:1.0'
    compile 'com.github.mvpotter:kladr-api-client:0.6.1'
    compile 'com.google.firebase:firebase-storage:10.0.1'

    testCompile 'junit:junit:4.12'
    compile 'com.android.support:multidex:1.0.1'

}









apply plugin: 'com.google.gms.google-services'

allprojects {
    repositories {
        maven { url 'https://jitpack.io' }
    }
}

我需要做什么?

這一次發生在我身上,具體的問題是

duplicate entry: javax/inject/Inject.class

所以我檢查了我的依賴項,發現我有多個依賴項聲明,因此進入您的libs文件夾,檢查是否有一個jar文件也已在您的依賴項中聲明

 compile fileTree(include: ['*.jar'], dir: 'libs')

其中很可能其中之一已經在您的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:26.+'
    compile 'com.android.support:design:26.+'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    compile 'com.google.firebase:firebase-auth:10.0.1'
    compile 'com.google.firebase:firebase-database:10.0.1'
    compile 'me.anwarshahriar:calligrapher:1.0'
    compile 'com.github.mvpotter:kladr-api-client:0.6.1'
    compile 'com.google.firebase:firebase-storage:10.0.1'

    testCompile 'junit:junit:4.12'
    compile 'com.android.support:multidex:1.0.1'

Maven中的問題。 Maven不能包含在Gradle中。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM