无法让我的应用知道位置

Unable to make my app location aware

我正在学习 android 教程,了解如何让您的应用感知位置 here
但是当我 运行 它在模拟器中时,下面的方法

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

显示在 Logcat:

Connection failed: ConnectionResult.getErrorCode() = 9

有人知道 ErrorCode 9 是什么意思吗?

public static final int SERVICE_INVALID

The version of the Google Play services installed on this device is not authentic.

Constant Value: 9

来源:ConnectionResult

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