从gmail注销的问题

时间:2017-07-05 17:03:24

标签: android connect google-api-client disconnect android-googleapiclient

我在Android应用程序中集成了Google signin Integration。 我在 SelectActivity 中使用了GoogleApiClient,如下所示:

x    = [3.25, 5.33, 3.25, 3.33, 5.33, 5.33, 3.33, 3.25, 3.25, 3.33]

现在,在 MainActivity 中,我已经从中编写了Logout代码,如下所示:

@Override
protected void onStart() {
    super.onStart();
    mGoogleApiClient = new GoogleApiClient.Builder(this)
            .enableAutoManage(this /* FragmentActivity */, SelectActivity.this /* OnConnectionFailedListener */)
            .addApi(Auth.GOOGLE_SIGN_IN_API, gso)
            .build();

}

但是,不幸的是它给了我以下错误:

if (mGoogleApiClient!=null) {
            Auth.GoogleSignInApi.signOut(mGoogleApiClient);
            mGoogleApiClient.disconnect();
        }

我该怎么办?请指导。感谢。

0 个答案:

没有答案