gpt4 book ai didi

android - Google Play 位置库 : Manifest merger failed

转载 作者:搜寻专家 更新时间:2023-11-01 09:27:29 27 4
gpt4 key购买 nike

尝试包含 Google Play 服务位置库时,出现以下错误:

Error:Execution failed for task ':app:processDebugManifest'.
> Manifest merger failed : Attribute meta-data#android.support.VERSION@value
value=(25.4.0) from [com.android.support:design:25.4.0]
AndroidManifest.xml:28:13-35 is also present at [com.android.support:support-v4:26.1.0] AndroidManifest.xml:28:13-35 value=(26.1.0).
Suggestion: add 'tools:replace="android:value"' to <meta-data> element at AndroidManifest.xml:26:9-28:38 to override.

我的依赖如下:

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
// You must install or update the Support Repository through the SDK manager to use this dependency.
compile 'com.android.support:support-v4:25.4.0'
compile 'com.android.support:design:25.4.0'
implementation "com.android.support:appcompat-v7:25.4.0"
implementation "com.android.support:preference-v14:25.4.0"
implementation "com.koushikdutta.ion:ion:2.+"
implementation 'com.twilio:video-android:2.0.0-beta2'
implementation 'com.google.android.gms:play-services-location:12.0.0'

compile('org.simpleframework:simple-xml:2.7.+') {
exclude module: 'stax'
exclude module: 'stax-api'
exclude module: 'xpp3'
}
}

我已经尝试过的:

  • 更改支持库的版本。如果这样做,我会收到大量有关未找到资源和属性的错误。
  • 添加 resolutionStrategy,如几篇具有类似错误的帖子中所述,例如 this one .这会导致一连串类似的错误。
  • 更新构建工具的版本。
  • 更新 compileSdkVersion。

我觉得一定有一个简单的解决方案,但我似乎找不到。感谢您的宝贵时间。

最佳答案

您应该检查冲突库中的依赖项:

./gradlew app:dependencies

其中 app 是您的模块名称。

或执行以下操作(在 View the dependency tree 阅读详细信息):

  • 选择“查看”>“工具窗口”>“Gradle”(或单击工具窗口栏中的“Gradle”)。
  • 展开 AppName > Tasks > android 并双击 androidDependencies。 Gradle 执行任务后,“运行”窗口应打开以显示输出。

快速检查您的依赖项,com.koushikdutta.ion:ion:2.+its dependencies 中使用以下内容:

compile 'com.android.support:support-v4:+'

这将获得最新版本的支持库。因此,您需要从中排除支持库:

implementation ("com.koushikdutta.ion:ion:2.+") {
exclude group: 'com.android.support'
exclude module: 'support-v4'
}

您应该尽量避免在您的依赖库版本中使用+

确保您对 compileSdkVersionbuildToolsVersiontargetSdkVersion支持库 使用相同的版本。

关于android - Google Play 位置库 : Manifest merger failed,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49637756/

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