2016-04-10 50 views
0

我知道我的问题有很多答案,但它们都不适合我。有人知道为什么这是hapening,即使我排除了gradle.build中的两个文件。在Android Studio中运行我的应用时出现DuplicatedError问题

Error:Execution failed for task ':projectPacatioClient:transformResourcesWithMergeJavaResForDebug'. 
> com.android.build.api.transform.TransformException: com.android.builder.packaging.DuplicateFileException: Duplicate files copied in APK org/joda/time/tz/data/America/Argentina/Tucuman 
    File1: /Users/as/StudioProjects/Project Pacatio Client2/projectPacatioClient/libs/aws-android-sdk-2.0.4-core.jar 
    File2: /Users/as/.gradle/caches/modules-2/files-2.1/joda-time/joda-time/2.4/89e9725439adffbbd41c5f5c215c136082b34a7f/joda-time-2.4.jar 

这是我的Gradle.build文件。

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 21 
    buildToolsVersion '21.0.0' 

    defaultConfig { 
     applicationId "io.kit.pc" 
     minSdkVersion 11 
     targetSdkVersion 21 
    } 

    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
     } 
     debug { 
      minifyEnabled false 
     } 
    } 
    apply plugin: 'eclipse' 
    defaultConfig { 
     multiDexEnabled true 
    } 

} 

dependencies { 
    compile project(':libraryCropper') 
    compile files('libs/gcm.jar') 
    //compile 'com.google.android.gms:play-services-gcm:7.8.0' 
    compile 'com.google.android.gms:play-services:4.4.52' 
    compile 'com.android.support:support-v4:21.0.0' 
    compile 'com.google.maps:google-maps-services:0.1.3' 
    //compile 'com.google.android.gms:play-services-gcm:7.8.0' 
    compile files('libs/aws-android-sdk-2.0.4-core.jar') 
    compile files('libs/aws-android-sdk-2.0.4-s3.jar') 
    compile files('libs/braintree-api-1.3.0-full.jar') 
    androidTestCompile files('libs/libGoogleAnalyticsServices.jar') 
    compile files('libs/universal-image-loader-1.9.3.jar') 
} 
+0

我通过再次导入问题解决了问题,无需gradle –

回答

-1

我面临同样的问题。
只需从build.gradle文件中删除重复的库。如果app-> libs已经存在,则进行交叉检查。

+0

研究员审阅者:这是一个答案。 –

相关问题