我正在尝试将文件发送到谷歌的数据存储区。当我尝试运行该应用程序时,我发出以下错误:
错误:任务执行失败 ':应用程序:transformResourcesWithMergeJavaResForDebug'。
com.android.build.api.transform.TransformException:com.android.builder.packaging.DuplicateFileException:重复文件 复制在APK COM /谷歌/ AppEngine上/重新包装/组织/阿帕奇/公/编解码器/语言/ BM / sep_approx_spanish.txt 文件1: C:\ Users \用户Javier.gradle \缓存\模块-2 \文件-2.1 \ com.google.appengine \应用服务引擎的端点\ 28年9月1日\ bf2e8a74bd28e388b3487fc78a0c7adfa592fd5d \应用服务引擎的端点-1.9.28.jar 文件2: C:\ Users \用户Javier.gradle \缓存\模块-2 \文件-2.1 \ com.google.appengine \应用服务引擎的API-1.0-SDK \ 34年9月1日\ 7c15c22fd362478e9758081d28e51590304d5ff4 \应用服务引擎的API-1.0-SDK-34年9月1日的.jar
我尝试用
排除文件
packagingOptions {
exclude 'sep_approx_spanish.txt'
}
但它不起作用。我的Build.gradle是下一个:
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.2"
defaultConfig {
applicationId "com.example.javier.wh"
minSdkVersion 23
targetSdkVersion 24
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
packagingOptions {
exclude 'sep_approx_spanish.txt'
}
}
dependencies {
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:25.0.1'
compile 'com.google.android.gms:play-services:10.0.1'
compile 'com.android.support:support-v4:25.0.1'
compile 'com.android.support:recyclerview-v7:25.0.1'
compile 'com.android.support:design:25.0.1'
compile 'com.google.code.findbugs:jsr305:2.0.1'
testCompile 'junit:junit:4.12'
compile project(path: ':backend', configuration: 'android-endpoints')
compile 'com.google.appengine:appengine-api-1.0-sdk:1.9.34'
compile 'com.google.appengine:appengine-endpoints:1.9.28'
compile 'com.google.appengine:appengine-endpoints-deps:1.9.28'
compile 'javax.servlet:servlet-api:2.5'
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.google.guava:guava:19.0'
compile 'com.googlecode.objectify:objectify:5.1.12'
}
有人有同样的问题吗? 求救!
答案 0 :(得分:0)
在android block
中的app build.gradle中添加以下行WriteArgs