我需要你的帮助,我正在开发一个使用firebase的应用程序,所以它可以工作,需要google play服务相对更新。在我的测试中,在过时的版本中崩溃应用程序。我有些应用程序在需要某个版本的google play服务时会出现一个通知,请求用户更新google play服务,这是我的疑问,我该如何让这个消息出现?

最佳答案

private boolean checkGooglePlayServices() {
    final int status = GooglePlayServicesUtil.isGooglePlayServicesAvailable(this);
    if (status != ConnectionResult.SUCCESS) {
        Log.e(TAG, GooglePlayServicesUtil.getErrorString(status));

        // need to update google play services.
        Dialog dialog = GooglePlayServicesUtil.getErrorDialog(status, this, 1);
        dialog.show();
        return false;
    } else {
        Log.i(TAG, GooglePlayServicesUtil.getErrorString(status));
        // google play services is updated.
        return true;
    }
}

试试这个。

关于android - 通知用户更新Google Play服务,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50596488/

10-09 03:13