请告诉我是否有可能? 我将连接到谷歌驱动器,但我不想将帐户添加到Android帐户管理器。
credential = GoogleAccountCredential.usingOAuth2(
activity, Arrays.asList(SCOPES))
.setBackOff(new ExponentialBackOff())
.setSelectedAccountName(PREF_ACCOUNT_NAME);
它不起作用,因为我的帐户未添加到android.accounts.AccountManager。
我不想向用户显示应用程序所连接的帐户以及获取文件的位置。
由于