gpt4 book ai didi

android - 发现多个文件,操作系统独立路径为 'classes.jar' 和 'com.android.tools.build:gradle:3.5.0'

转载 作者:行者123 更新时间:2023-12-04 21:29:16 25 4
gpt4 key购买 nike

更新到“com.android.tools.build:gradle:3.5.0”

找到构建错误:

Execution failed for task ':truecp_player:mergeDebugJavaResource'. A failure occurred while executing com.android.build.gradle.internal.tasks.Workers$ActionFacade More than one file was found with OS independent path 'classes.jar'



ps:
'com.android.tools.build:gradle:3.4.2' 工作正常。

update: if the library module with some local .aar file dependency the error will occur!



库模块:

apply plugin: 'com.android.library'

def androidConfig = rootProject.extensions.getByName("ext").android

android {
compileSdkVersion androidConfig.compileSdkVersion
buildToolsVersion androidConfig.buildToolsVersion

defaultConfig {
minSdkVersion 21
targetSdkVersion 29
versionCode 1
versionName "1.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'consumer-rules.pro'
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
api fileTree(include: ['*.jar', "*.aar"], dir: 'libs')

implementation 'androidx.appcompat:appcompat:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}


最佳答案

我遇到了完全相同的问题,它是由 .aar 和 .jar 库引起的。看起来您的项目中还包括其中一些:
api fileTree(include: ['*.jar', "*.aar"], dir: 'libs')
在我的特殊情况下,其中一个 .aar 文件还包含与/libs 文件夹中的另一个 .jar 文件同名的 .jar 文件。另外,我必须更改导入 .aar 文件的方式:从/libs 文件夹到独立的 gradle 模块,如官方文档和 here 中所述。 .

关于android - 发现多个文件,操作系统独立路径为 'classes.jar' 和 'com.android.tools.build:gradle:3.5.0',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57725323/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com