我试图在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实现回调。
有什么想法吗?
答案 0 :(得分:0)
我能够通过降级到较旧版本的Google Play服务来“修复”此问题。
如果有人有实际修复,我会保持开放状态。