java 从Google的示例应用中查看Play服务方法。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 从Google的示例应用中查看Play服务方法。相关的知识,希望对你有一定的参考价值。

// https://github.com/googlesamples/google-services/blob/master/android/gcm/app/src/main/java/gcm/play/android/samples/com/gcmquickstart/MainActivity.java

/**
 * Check the device to make sure it has the Google Play Services APK. If
 * it doesn't, display a dialog that allows users to download the APK from
 * the Google Play Store or enable it in the device's system settings.
 */
private boolean checkPlayServices() {
    GoogleApiAvailability apiAvailability = GoogleApiAvailability.getInstance();
    int resultCode = apiAvailability.isGooglePlayServicesAvailable(this);
    if (resultCode != ConnectionResult.SUCCESS) {
        if (apiAvailability.isUserResolvableError(resultCode)) {
            apiAvailability.getErrorDialog(this, resultCode, PLAY_SERVICES_RESOLUTION_REQUEST)
                    .show();
        } else {
            Log.i(TAG, "This device is not supported.");
            finish();
        }
        return false;
    }
    return true;
}

以上是关于java 从Google的示例应用中查看Play服务方法。的主要内容,如果未能解决你的问题,请参考以下文章

我可以在安装在 Google Play 商店之外的应用上使用 Google Play 服务吗?

是否必须从 Google Play 下载应用的 APK 才能使用 Google Play 服务

.Net - Google Play 下载销售报告

gsutil - 如何从 google play 获取 Android 应用审查报告

是否可以从 Xamarin Android 应用程序直接使用 Google Play BillingClient?

在 Google Play 游戏中查看应用的排行榜