我最近在Android SDK Manager中更新了Google Play服务SDK(第29版)。 然后我发现在SDK更新后我构建的apk将在最初的GoogleApiClient期间崩溃。
以下是我们使用的代码。
mGoogleApiClient = new GoogleApiClient.Builder(this)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.addApi(LocationServices.API)
.build();
这是调用堆栈的日志
E / AndroidRuntime:致命异常:主要是 处理:com.xxxxxxx.xxxxx,PID:3855我使用的google play服务版本是 com.google.android.gms:play-services-location:8.3.0
答案 0 :(得分:1)
我尝试将位置服务更新为8.4.0 但它导致Version conflict updating to 8.4.0 所以我按照上面链接中的说明进行操作 然后问题就解决了。
这是我使用的说明。