protected void onResume() {
super.onResume();
if (mGoogleApiClient == null) {
mGoogleApiClient = new GoogleApiClient.Builder(this)
.addApi(Drive.API)
.addScope(Drive.SCOPE_FILE)
.addScope(Drive.SCOPE_APPFOLDER)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.build();
}
mGoogleApiClient.connect();
}
我不想让用户选择他们的帐户。我只是想使用我的谷歌帐户,密码已在我的代码中修复,使用我的应用程序的任何人都将使用此帐户。我能这样做吗?