0

我正在关注关于让您的应用程序位置知道的 android 教程,但是
当我在模拟器中运行它时,下面的方法

@Override
public void onConnectionFailed(@NonNull ConnectionResult connectionResult) {
    Log.i("state", "Connection failed: ConnectionResult.getErrorCode() = " + connectionResult.getErrorCode());
}

在 Logcat 中显示:

连接失败:ConnectionResult.getErrorCode() = 9

有谁知道 ErrorCode 9 是什么意思?

4

1 回答 1

0

public static final int SERVICE_INVALID

此设备上安装的 Google Play 服务版本不是正版。

常数值:9

来源:连接结果

您正在运行使用 Google API 的模拟器吗?

于 2017-06-06T20:26:39.297 回答