please tell me whether it is possible? I will connect to google drive, but I do not want to add an account to android AccountManager.
credential = GoogleAccountCredential.usingOAuth2(
activity, Arrays.asList(SCOPES))
.setBackOff(new ExponentialBackOff())
.setSelectedAccountName(PREF_ACCOUNT_NAME);
It does not work because my account is not added to android.accounts.AccountManager.
I do not want to show the user with which account the application is connected and where taking files.
Thanks