Google Drive SDK for Android に問題があります。
一部のデバイス (以前は動作していたが、現在は動作していない) を除いて、すべて正常に動作しUserRecoverableAuthException.getIntent()
ますstartIntent(...)
。
Logcat に表示されるのは次のとおりです。
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
それでおしまい。デバイスでは何も起こりません。
インテントの起動方法は次のとおりです。
Intent intent = e.getIntent();
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK).addFlags(Intent.FLAG_FROM_BACKGROUND);
startActivity(intent);
何か案は?