gpt4 book ai didi

android - 如何解决 Android Studio 中我的依赖项中具有相同包名的 2 个库?

转载 作者:行者123 更新时间:2023-11-29 00:11:18 25 4
gpt4 key购买 nike

我的项目中有以下依赖项:

     compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.2'
compile 'com.google.android.gms:play-services:6.5.87'
compile project(path: ':backend', configuration: 'android-endpoints')
compile project(':library')
compile files('libs/volley.jar')
compile('com.google.maps.android:android-maps-utils:0.3+')

现在在同步时出现以下错误:

错误:任务 ':app:processDebugResources' 执行失败。

Error: more than one library with package name 'com.google.maps.android' You can temporarily disable this error with android.enforceUniquePackageName=false However, this is temporary and will be enforced in 1.0

我试过如下但我得到了同样的错误:

 compile('com.google.maps.android:android-maps-utils:0.3') {
exclude group: 'com.google.android.gms'
}

我也试过如下但错误仍然存​​在:

  compile('com.google.maps.android:android-maps-utils:0.3') { transitive = false }

我正在使用以下内容:

classpath 'com.android.tools.build:gradle:1.0.0'

我该怎么办??

最佳答案

我尝试了以下并且它有效:

enter image description here

所以问题不在

compile('com.google.maps.android:android-maps-utils:0.3+')

它重复以下几行:

compile project(path: ':backend', configuration: 'android-endpoints')
compile project(':library')

请检查它们是否包含名为 com.google.maps.android 的包。

关于android - 如何解决 Android Studio 中我的依赖项中具有相同包名的 2 个库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29949276/

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