I'm trying to get an auth token for a Twitter account from Android's AccountManager.
As soon as the getAuthToken() method is called, the 'Android System' app opens up with a blank screen and after some time it takes me back to the Home screen with a dialog saying 'Unfortunately, Android System has stopped'.
In order to ask the user for permission to access his/her Twitter account, it tries to start the GrantCredentialsPermissionActivity but gives a NullPointerException.
I've provided the log and the code below.
When I try to get an auth token for a Google account using the same code below (changing the account and authTokenType, ofcourse), it works fine and I do get to see the Permission screen, but in case of a Twitter account it gives me the exception.
This has been reported as an issue already (not related to a Twitter account though), almost a year ago, but I guess it still hasn't been fixed by Google.
Here's the log:
java.lang.RuntimeException: Unable to start activity
ComponentInfo{android/android.accounts.GrantCredentialsPermissionActivity}:
java.lang.NullPointerException
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1968)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1993)
at android.app.ActivityThread.access$600(ActivityThread.java:127)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1159)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:4507)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:790)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:557)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.NullPointerException
at android.accounts.GrantCredentialsPermissionActivity.onCreate(
GrantCredentialsPermissionActivity.java:84)
at android.app.Activity.performCreate(Activity.java:4465)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1052)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1932)
... 11 more
And here's the code:
accountManager.getAuthToken(account, "com.twitter.android.oauth.token",
null,
activity,
new AccountManagerCallback<Bundle>()
{
@Override
public void run(AccountManagerFuture<Bundle> result)
{
try
{
Bundle bundle = result.getResult();
if (bundle.containsKey(AccountManager.KEY_AUTHTOKEN))
{
// Token received
}
Intent intent = (Intent) bundle.get(AccountManager.KEY_INTENT);
if (intent != null)
{
activity.startActivityForResult(intent, 0);
return;
}
}
catch (OperationCanceledException e)
{
e.printStackTrace();
}
catch (AuthenticatorException e)
{
e.printStackTrace();
}
catch (IOException e)
{
e.printStackTrace();
}
}
},
null);
Tested on a Samsung Galaxy S2, running Android 4.0.3.
I'd really appreciate any help or suggestions! Thanks!
