Merge "Add FLAG_ACTIVITY_NEW_TASK when starting UI-based tether provisioning."

This commit is contained in:
Treehugger Robot
2018-01-25 03:09:27 +00:00
committed by Gerrit Code Review

View File

@@ -495,6 +495,7 @@ public class Tethering extends BaseNetworkObserver {
Intent intent = new Intent(Settings.ACTION_TETHER_PROVISIONING);
intent.putExtra(ConnectivityManager.EXTRA_ADD_TETHER_TYPE, type);
intent.putExtra(ConnectivityManager.EXTRA_PROVISION_CALLBACK, receiver);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
final long ident = Binder.clearCallingIdentity();
try {
mContext.startActivityAsUser(intent, UserHandle.CURRENT);