美文网首页
react-native-camera填坑

react-native-camera填坑

作者: Thelastgame | 来源:发表于2018-03-22 14:59 被阅读76次

在项目中引入react-native-camera报错:

Error:Execution failed for task ':react-native-camera:
processReleaseResources'.
Error: more than one library with package name
'com.google.android.gms.license'

解决方法:在项目的build.gradle文件中添加如下代码

def googlePlayServicesVersion = '11.8.0'
allprojects {
configurations.all {
resolutionStrategy {
eachDependency { DependencyResolveDetails details ->
if (requested.group == 'com.google.android.gms') {
details.useVersion "$googlePlayServicesVersion"
}
if (requested.group == 'com.google.firebase') {
details.useVersion "$googlePlayServicesVersion"
}
    }
        }
    }

相关文章

网友评论

      本文标题:react-native-camera填坑

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