Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Studio 2.3.2 Launching the app under a work profile or another user account on the target device will result in a crash

I have installed Android Studio 2.3.2 version, my application was running successfully on the emulator as well as mobile device. After making some changes it's not working on a mobile device but it works fine in emulator.

An event log:

12:55 PM    Instant Run performed a full build and install since
                    the installation on the device does not match the local build on disk.
                    (Don't show again)

12:55 PM    Instant Run detected that you are running on a target device that has a work profile or multiple user accounts.
                    Launching the app under a work profile or another user account on the target device will result in a crash.
                    Learn more about how to run your app under a work profile.
like image 851
vinod wakade Avatar asked Jun 03 '17 07:06

vinod wakade


1 Answers

Use this to configure your project Launching your app in a Work profile > link not working (as of 22 Dec 2021)

The content below was taken from the link above when it was working:

If you run your app with Instant Run and open your app using a Work profile (or other secondary profile), your app will crash because the instrumented DEX files used by Instant Run are accessible only from the primary profile's user space.

If you want to continue using Instant Run, just avoid opening your app with the Work profile and be sure your run configuration does not use the --user user_id flag.

If you need to use your app with the Work profile, we recommend you create a new run configuration that includes the --user user_id flag, specifying the Work profile user ID. You can find the user ID by executing adb shell pm list users from command line. When you use the --user flag, Android Studio disables Instant Run for only that deployment; Instant Run will work again when you switch to a configuration without the --user flag.

To disable Instant Run:

  1. Open the Settings or Preferences dialog.
  2. Navigate to Build, Execution, Deployment > Instant Run.
  3. Uncheck the box next to Enable Instant Run.

UPDATE (22 Dec 2021):
Check the updated link for Work profiles and this code lab.

like image 120
Sudheesh R Avatar answered Sep 20 '22 21:09

Sudheesh R