Skip to content Skip to sidebar Skip to footer

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 mob

Solution 1:

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.

Post a Comment for "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"