码迷,mamicode.com
首页 > 移动开发 > 详细

Attribute meta-data#android.support.VERSION@value value=(25.4.0) from AndroidManifest.xml:25:13-35 is also present at AndroidManifest.xml:28:13-35 value=(26.1.0).

时间:2018-09-10 14:43:23      阅读:347      评论:0      收藏:0      [点我收藏+]

标签:his   each   ror   idm   dep   ide   attribute   port   replace   

Android Studio 编译项目的时候报错

Merging Errors:
Error: Attribute meta-data#android.support.VERSION@value value=(25.4.0) from AndroidManifest.xml:25:13-35 is also present 
       at AndroidManifest.xml:28:13-35 value=(26.1.0). Suggestion: add ‘tools:replace="android:value"‘ to <meta-data> element at 
       AndroidManifest.xml:23:9-25:38 to override. app main manifest (this file), line 24 

原因是:程序内出现不同的,support或者其他外部引用库的多个版本,Gradle在进行合并的时候会使用本地持有的,最高版本的来进行编译,

            所以25的support就有可能引用26的东西,就会出现 属性 merge 错误 ,或者Class丢失,官方的解决方法是:

            在AndroidManifest.xml:中 加入tools:replace="android:value" 到 <meta-data>

            然而没看懂什么意思,最后找到了一种方法:

            在app的build.gradle中加入下面代码,强制指定一种版本

configurations.all {
    resolutionStrategy.eachDependency { DependencyResolveDetails details ->
        def requested = details.requested
        if (requested.group == ‘com.android.support‘) {
            if (!requested.name.startsWith("multidex")) {
                details.useVersion ‘25.4.0‘//默认使用
            }
        }
    }
}

 

Attribute meta-data#android.support.VERSION@value value=(25.4.0) from AndroidManifest.xml:25:13-35 is also present at AndroidManifest.xml:28:13-35 value=(26.1.0).

标签:his   each   ror   idm   dep   ide   attribute   port   replace   

原文地址:https://www.cnblogs.com/lwx521/p/9619211.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!