Add new account intent is no longer forwarding

It now launches directly instead of bouncing through settings

b/16309940

Change-Id: I23ab9902f3b02e466626e08b842a5228193a7909
This commit is contained in:
Tony Mantler 2014-07-15 09:56:55 -07:00
parent 5c93d36616
commit 46c95eb6c9
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ public class AccountSetupFinal extends AccountSetupActivity
}
public static Intent actionNewAccountWithResultIntent(final Context context) {
final Intent i = new ForwardingIntent(context, AccountSetupFinal.class);
final Intent i = new Intent(context, AccountSetupFinal.class);
i.putExtra(EXTRA_FLOW_MODE, SetupDataFragment.FLOW_MODE_NO_ACCOUNTS);
return i;
}