在项目中引入react-native-device-info报如下的错误:
Gradle failed to resolve
com.google.android.gms:play-services-auth:11.8.0
解决办法:
在项目的build.gradle文件中加入如下代码
allprojects {
repositories {
jcenter()
maven { url "https://maven.google.com" }
}
}
Gradle failed to resolve
com.google.android.gms:play-services-auth:11.8.0
在项目的build.gradle文件中加入如下代码
allprojects {
repositories {
jcenter()
maven { url "https://maven.google.com" }
}
}
本文标题:react-native-devices-info使用的问题
本文链接:https://www.haomeiwen.com/subject/xguaqftx.html
网友评论