[android-developers] Google Play Services: UserRecoverableAuthException's intent doesn't start
I'm having issues with the Google Drive SDK for Android.
Everything works fine except for some devices (on which it used to be working, but now doesn't) the Intent that is returned by `UserRecoverableAuthException.getIntent()` isn't doing anything when started via `startIntent(...)`.
All I see on Logcat is:
03-11 08:31:19.692: INFO/ActivityManager(552): START u0 {cat=[scope:oauth2:https://www.googleapis.com/auth/drive,account:myemail@googlemail.com,extrashash:1088740320] flg=0x10000004 cmp=com.google.android.gms/.auth.TokenActivity (has extras)} from pid 27644
That's it. Nothing happens on the device.
This is how the Intent is launched:
Intent intent = e.getIntent();
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK).addFlags(Intent.FLAG_FROM_BACKGROUND);
startActivity(intent);
Any ideas?
-- --
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
---
You received this message because you are subscribed to the Google Groups "Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to android-developers+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home