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')
}
我通過再次導入問題解決了問題,無需gradle –