我已经将我的Android studio更新到3.0,然后他要求升级到'com.Android.tools.build:gradle:3.0.0'
一切都很顺利,直到我决定运行我的项目,它给了我这个错误
Error:Execution failed for task ':app:transformResourcesWithMergeJavaResForDebug'.
android {
compileSdkVersion 26
buildToolsVersion "26.0.2"
useLibrary 'org.apache.http.legacy'
defaultConfig {
applicationId "com.test.demo"
minSdkVersion 16
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}'
android {
compileSdkVersion 26
buildToolsVersion "26.0.2"
useLibrary 'org.apache.http.legacy'
defaultConfig {
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_6
targetCompatibility JavaVersion.VERSION_1_6
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
packagingOptions {
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'
}
}
您应该将build.gradle
您的PackagingOptions
:
packagingOptions {
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'
}
我在尝试导入依赖项时遇到这个错误。确切地说是stripe SDK。 找到多个与操作系统无关的路径为“meta-inf/sdk_release.kotlin_module”的文件 下面是一个更详细的构建错误。 com.android.builder.merge.duplicaterelativeFileException:在com.android.builder.merge.StreamMergeA
在运行应用程序时,发现了多个与操作系统无关的路径为'meta-inf/rxjava.properties'的文件。如何从android studio中删除重复文件?
当我尝试构建我的应用程序时,我面临以下问题: 找到多个与操作系统无关的路径为“meta-inf/index.list”的文件 ...问题依然存在 我使用的是Java8和Android Studio的最后一个稳定版本
我正在尝试android WorkManager,运行时代码抛出错误“不止一个文件was found with OS独立路径'meta-inf/proguard/androidx-annotations.pro”,我尝试了以下答案,没有帮助。 Build.Gradle(应用程序)
当我构建我的应用程序时,我得到以下错误: 错误:任务“:app:TransformResourcesWithMergeJavaResforDebug”执行失败。找到多个具有操作系统独立路径“meta-inf/license”的文件 这是我的build.gradle文件: 当我将此代码添加到build.gradle文件中时, 这个错误会被解决,但是另一个问题会发生。像这样: 谁有想法怎么解决这个?
在Android项目中。我使用 我遇到了 发现多个文件具有独立于操作系统的路径“META-INF/atomicfu”。kotlin\u模块“” 甚至 不起作用