始终在启动应用程序中检查谷歌播放服务时获取消息更新谷歌播放服务

时间:2014-08-26 12:57:45

标签: android google-cloud-messaging

我开发了一个具有谷歌云消息功能的应用程序,所以我使用最新的谷歌播放服务和开发工具是android工作室所以我从Android开发人员网站http://developer.android.com/google/gcm/client.html获取gcm的代码,然后我检查谷歌在启动应用程序时可用或不提供服务

 public boolean checkPlayServices(Activity activity) {
    int resultCode = GooglePlayServicesUtil.isGooglePlayServicesAvailable(context);
    if (resultCode != ConnectionResult.SUCCESS) {
        if (GooglePlayServicesUtil.isUserRecoverableError(resultCode)) {
            GooglePlayServicesUtil.getErrorDialog(resultCode, activity,
                    PLAY_SERVICES_RESOLUTION_REQUEST).show();
        } else {
            activity.finish();
        }
        return false;
    }
    return true;
}

但它始终会返回此消息"除非您更新Google Play服务,否则此应用无法运行 enter image description here

0 个答案:

没有答案