我想react-native-maps
在我的 react-native 应用程序中使用这个包,这个包需要最新版本的谷歌播放服务才能正常工作。我想在某个地方托管一个 google play 服务的 APK,如果他们的 google play 服务版本过时,请推荐用户下载它。我想知道是否有任何通用版本的 google play 服务兼容所有安卓设备?
问问题
538 次
2 回答
0
好吧,您正在尝试使用 google-play-services 的最新/更新版本。在react-native-maps
也许他们正在使用更新的。或者我假设他们使用的是过时的。如果您想使用更新的第一个修复您想要使用的那个,请执行以下操作:跳过react-native-maps
google-play-services 版本并使用您自己定义的版本。
compile (project(':react-native-maps')) {
// exclude version their version
exclude group: 'com.google.android.gms', module: 'play-services-base'
exclude group: 'com.google.android.gms', module: 'play-services-maps'
}
//user your own
compile 'com.google.android.gms:play-services-base:X.x.x'
compile 'com.google.android.gms:play-services-maps:X.x.x'
谢谢,如果您有任何疑问可以问我,对于 Gradle 依赖项,您可以从这里了解更多信息
于 2017-12-31T18:56:53.277 回答
0
我认为(030)版本的谷歌播放服务将适用于每个版本。
于 2017-08-24T06:23:30.700 回答