我在我的项目中添加了google translate api后,出现了这个错误。我使用的是Android Studio3.0,Gradle3.0.0。
Error:Execution failed for task ':app:transformResourcesWithMergeJavaResForDebug'.
More than one file was found with OS independent path 'project.properties'
我试过这里和这里提出的解决办法,但没有成功。此外,我试着将gradle降级到2.3版本,但这也没有解决问题。
android {
compileSdkVersion 25
buildToolsVersion '26.0.2'
defaultConfig {
applicationId "com.aim.fjalortest"
minSdkVersion 16
targetSdkVersion 25
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 'META-INF/project.properties'
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/license.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/notice.txt'
exclude 'META-INF/ASL2.0'
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
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.3.1'
testCompile 'junit:junit:4.12'
compile 'com.readystatesoftware.sqliteasset:sqliteassethelper:+'
compile 'com.android.support:recyclerview-v7:25.4.0'
compile 'com.google.android.gms:play-services-vision:9.0.0+'
compile 'com.android.support:design:25.4.0'
compile 'com.google.cloud:google-cloud-translate:1.12.0'
//annotationProcessor 'com.google.cloud:google-cloud-translate:1.12.0'
//jackson
compile 'com.fasterxml.jackson.core:jackson-databind:2.8.5'
compile 'com.fasterxml.jackson.core:jackson-core:2.8.5'
compile 'com.fasterxml.jackson.core:jackson-annotations:2.8.5'
}
添加以下几行就解决了我的问题:
packagingOptions {
exclude 'project.properties'
exclude 'META-INF/INDEX.LIST'
}
未解决最初的关闭原因 我在编译我的项目时得到了这个问题,我已经尝试了几个解决方案,这是 https://google.github.io/android-gradle-dsl/current/com.android.build.gradle.internal.dsl.packagingoptions.html 错误:发现多个具有操作系统独立路径“META-INF/Dependencies”的文件
我正在使用Android Gradle: 3.0.0-beta-6,自从我包含Google翻译API以来,它会抛出以下错误。 这是我的依赖项 我如何修复这个错误,为什么会发生这种情况,因为我在过去的34个小时里进行了详尽的搜索,但我没有得到解释。
我有Android应用程序,我使用谷歌翻译API当我建立,我得到错误:错误:执行失败的任务:应用程序:转换资源与MergeJavaResForDebug。发现多个文件与操作系统独立的路径META-INF/LICENSE
在我的项目中添加了videoCompressor库后,我开始遇到这个问题。 发现多个文件具有独立于操作系统的路径'builddef.lst' 在构建时获取这些消息日志。 Google的问题读取这些线程,通过在gradle文件中添加忽略重复文件提供了解决方案,在android{}中添加。 问题还在?问题是我将如何知道哪些依赖项或文件是复制或制造问题而构建。我无法使用上面的生成日志跟踪该文件。
当我构建我的应用程序时,我得到以下错误: 错误:任务“:app:TransformResourcesWithMergeJavaResforDebug”执行失败。找到多个具有操作系统独立路径“meta-inf/license”的文件 这是我的build.gradle文件: 当我将此代码添加到build.gradle文件中时, 这个错误会被解决,但是另一个问题会发生。像这样: 谁有想法怎么解决这个?
我正在尝试构建我的应用程序,但出现以下错误: 我很确定这是两个Gradle依赖之间的冲突,但我不知道如何解决它。