如何解决“在Android独立路径中找到多个文件'project.properties'”Android Studio 3.0 Beta-6中的错误
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何解决“在Android独立路径中找到多个文件'project.properties'”Android Studio 3.0 Beta-6中的错误相关的知识,希望对你有一定的参考价值。
我正在使用android Gradle:3.0.0-beta-6,因为我加入了Google Translation API,所以它会引发以下错误。
FAILURE: Build failed with an exception.
What went wrong: Execution failed for task
':app:transformResourcesWithMergeJavaResForDebug'.
More than one file was found with OS independent path 'project.properties'
这是我的依赖
dependencies {
annotationProcessor 'com.google.auto.value:auto-value:1.2'
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.android.support:support-v4:26.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation('com.android.support.test.espresso:espresso-core:3.0.1',
{
exclude group: 'com.android.support', module: 'support-annotations'
})
api 'com.twitter.sdk.android:twitter-core:3.1.1'
api 'com.google.cloud:google-cloud-translate:1.6.0'
}
我怎样才能解决这个错误以及为什么会发生这种情况,因为我在过去34小时内进行了详尽的搜索,但我没有得到解释。
答案
您是否尝试将此添加到build.gradle?
android {
...
packagingOptions {
exclude 'META-INF/project.properties'
}
}
以上是关于如何解决“在Android独立路径中找到多个文件'project.properties'”Android Studio 3.0 Beta-6中的错误的主要内容,如果未能解决你的问题,请参考以下文章