美文网首页
Android dependency 'com.andr

Android dependency 'com.andr

作者: 飞奔在路上 | 来源:发表于2018-10-22 17:44 被阅读10次

在项目中加入react-native-camera的时候 出现的错误.

解决方案:

修改

implementation project(':react-native-camera')

implementation (project(':react-native-camera')) {
        exclude group: "com.android.support"
    }

查看原文

Could not find play-services-basement.aar (com.google.android.gms:play-services-basement:15.0.1).

解决方案:

It was enough for me to move jcenter() below google() within allprojects.repositories in android/build.gradle

查看原文

相关文章

网友评论

      本文标题:Android dependency 'com.andr

      本文链接:https://www.haomeiwen.com/subject/dbngzftx.html