9
Awareness.SnapshotApi.getLocation(client)
    .setResultCallback(new ResultCallback<LocationResult>() {
        @Override
        public void onResult(@NonNull LocationResult locationResult) {
            if (locationResult.getStatus().isSuccess()) {

            }

        }
    }).addOnFailureListener(new OnFailureListener() {
        @Override
            public void onFailure(@NonNull Exception e) {
                String error = e.getMessage();
            }

com.google.android.gms.common.api.ApiException: 17: API: ContextManager.API 在此设备上不可用。

在 Android 9 基本手机上运行应用程序时,我收到此错误是一个例外,但在 Android 8 Samsung s8 上运行时也不例外。

我已更新到最新的 16.0.0 感知包。

4

1 回答 1

0

就我而言,从https://console.developers.google.com为我的项目激活 Awareness API解决了这个问题。

于 2020-04-25T17:43:47.663 回答