web-dev-qa-db-ja.com

com.Android.builder.packaging.DuplicateFileException:APK META-INF / maven / com.fasterxml.jackson.core / jackson-databind / pom.xmlにコピーされた重複ファイル

RestAPIを使用してデータをフェッチするアプリを1つ作成しています。その操作では、レトロフィット2、okhttp3、およびjacksonを使用してjsonをオブジェクトに解析し、アプリもFirebase Cloud Messagingを使用しています

コードをコンパイルすると、次のエラーが表示され、実行できません

エラー:タスク ':app:transformResourcesWithMergeJavaResForDebug'の実行に失敗しました。

com.Android.build.api.transform.TransformException:com.Android.builder.packaging.DuplicateFileException:APK META-INF/maven/com.fasterxml.jackson.core/jackson-databind/pom.xml File1にコピーされた重複ファイル: /Users/silent/work/silentinfotech/DoorEye/app/libs/jackson-databind-2.7.2.jar File2:/Users/silent/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson。 core/jackson-databind/2.2.2/3c8f6018eaa72d43b261181e801e6f8676c16ef6/jackson-databind-2.2.2.jar

Android Studio 2.1.1OS X El Capitan 10.11.2

一部のライブラリがプロジェクトのlibsフォルダーに追加されました

converter-jackson-2.0.2.jar

jackson-annotations-2.7.0.jar

jackson-core-2.7.2.jar

jackson-databind-2.7.2.jar

私のbuild.gradleファイル

apply plugin: 'com.Android.application'

Android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "com.silentinfotech.dooreye"
        minSdkVersion 17
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
        multiDexEnabled true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
        }
    }
    packagingOptions {

        exclude 'META-INF/LICENSE'
        exclude 'META-INF/NOTICE'

    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    testCompile 'junit:junit:4.12'
    compile 'com.Android.support:appcompat-v7:23.4.0'
   // compile 'com.Android.support:support-v4:23.4.0'
    compile 'com.google.firebase:firebase-messaging:9.0.0'
    compile 'com.firebase:firebase-client-Android:2.5.1+'
   // compile 'com.github.bumptech.glide:glide:3.7.0'
    compile 'com.squareup.retrofit2:retrofit:2.0.2'
    compile 'com.squareup.okhttp3:okhttp:3.2.0'
    compile 'com.squareup.okhttp3:logging-interceptor:3.0.1'

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

Build.gradleファイルにも以下を追加してみましたが、うまくいきません

packagingOptions {
    
        
exclude 'META-INF/LICENSE'
        
exclude 'META-INF/NOTICE'
    
    
}

キャッシュの無効化と再起動も試みました。手動でキャッシュを削除しようとしても、エラーが発生します。

Firebase Cloud Messagingの依存関係をすべて削除してプロジェクトを正常に実行すると、プロジェクトでFirebase Cloud Messagingを使用していますが、FCM依存関係を追加すると、常にエラーが発生します。

11

これの代わりに

packagingOptions {

        exclude 'META-INF/LICENSE'
        exclude 'META-INF/NOTICE'

    }

これを試して

 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'

   }

そしてもっと

この行を削除

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

下からこのapply plugin: 'com.Android.application'の後に上に追加します。

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

更新:

削除するだけ

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

依存関係を適用します。

15

Gredleを変更します。mavenにもexcludeを使用する必要があります。

packagingOptions {

    exclude 'META-INF/LICENSE'
    exclude 'META-INF/NOTICE'
    exclude 'META-INF/maven

}

google-play-serviceを使用している場合は、annotationを除外できます。

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile ('com.google.Android.gms:play-services:8.1.0'){
    exclude group: 'com.google.guava'
}
}

または、これも試すことができます

configurations {
all*.exclude group: 'com.Android.support', module: 'support-v4'
}
2
Devendra Singh

実装 'com.google.firebase:firebase-ads:15.0.1'実装 'com.google.firebase:firebase-core:16.0.1'

この実装「com.google.Android.gms:play-services:12.0.1」を追加します

0
Keyu Zala