未调用Google API回调

时间:2017-03-24 10:25:10

标签: android google-api google-drive-api google-drive-android-api

我试图在IntentService的onHandleIntent()中连接到Google Drive API,但connect()似乎没有做任何事情。

没有调用回调(onConnected,onConnectionSuspended,onConnectionFailed)。没有错误或例外,只是沉默。

@Override
protected void onHandleIntent(Intent intent) {
    mGoogleApiClient = new GoogleApiClient.Builder(this)
        .addApi(Drive.API)
        .addScope(Drive.SCOPE_FILE)
        .addConnectionCallbacks(this)
        .addOnConnectionFailedListener(this)
        .build();
     mGoogleApiClient.connect();
}

IntentService实现回调。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

我能够通过降级到较旧版本的Google Play服务来“修复”此问题。

如果有人有实际修复,我会保持开放状态。