如何解决"App is having trouble with google play services. please try again."

How to resolve "App is having trouble with google play services. please try again."

我已经使用 "react-native": "^0.57.4" 在 react-native 中制作一个项目大约 4 个月了。它由我 rendering/modifying/developing 使用 "react-native-maps": "^0.22.1".

的地图视图组成

突然我现在有这个错误- "App" is having trouble with google play services. Please try again.

上面的错误显示了地图应该在的位置。地图组件是灰色的,上面写着 "App" is having trouble with google play services. Please try again. 消息。

我在实际设备上试过 运行 它运行良好。所以这意味着它是一个模拟器问题。任何人都可以分享关于如何在模拟器上解决此问题的任何见解或解决方案吗?

我使用 Nexus 5P 和 6P android 9.0 *86.

我今天遇到了同样的问题,最新版本的 com.google.android.gms.play-services-maps 是问题,降级到 16.0.0 解决了它。

Inside the app/build.gradle

dependencies {
   ...
 compile "com.google.android.gms:play-services-base:+" <---Remove this
 compile "com.google.android.gms:play-services-maps:+" <---Remove this
 compile "com.google.android.gms:play-services-base:16.0.1" <---Add this
 compile "com.google.android.gms:play-services-maps:16.0.0" <---Add this
}

希望对您有所帮助。

我没有使用 React Native,但按照有关设置 Firebase SDK 的说明为我解决了这个问题。请参阅我的 answer here 关于添加 firebase-core

如果您正在使用 "react-native": "^0.59.8""react-native-maps": "^0.24.1"

,有时解决方案可能是升级 google 播放服务

转到

Settings --> Android SDK --> SDK Tools(tab) --> Android SDK Build-Tools

并应用可用更新。 有关如何升级 google 播放服务的更多详细信息,请参阅