我是靠谱客的博主 坦率小蚂蚁,最近开发中收集的这篇文章主要介绍Android dependency库版本冲突解决方案,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Unity打包安卓APK遇到问题:

Android dependency 'com.android.support:support-compat' has different version for the compile (27.0.2) and runtime (27.1.1) classpath. You should manually set the same version via DependencyResolution

解决方案一:

        在知道是哪个库文件引用存在冲突的可以在gradle中,在库引用的地方添加

api ('com.linecorp.linesdk:linesdk:5.4.0') {
        exclude group: 'com.android.support', module: 'support-compat'
    }

解决方案二:

        Grovvy脚本指定版本号。在gradle文件中添加代码

subprojects {
    project.configurations.all {
        resolutionStrategy.eachDependency { details ->
            if (details.requested.group == 'com.android.support' && !details.requested.name.contains('multidex') ) {
                details.useVersion '27.0.2' // 指定想要的版本号
            }
        }
    }
}

最后

以上就是坦率小蚂蚁为你收集整理的Android dependency库版本冲突解决方案的全部内容,希望文章能够帮你解决Android dependency库版本冲突解决方案所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(65)

评论列表共有 0 条评论

立即
投稿
返回
顶部