Skip to content Skip to sidebar Skip to footer

App Install Failed - New Target Sandbox 1 Is Incompatible With Previous Value Of 2

I'm getting this error when trying to install the installed app on a device with the instant app installed. I've set targetSandboxVersion as 2 for both the instant and installed ap

Solution 1:

Got it working.

Had to add android:targetSandboxVersion="2" in the manifest tag instead of the application tag.

Hope it helps someone.


Solution 2:

Go to Android Settings on the device/emulator, go to Apps, scroll to your app and tap, then tap "Clear app" to remove the existing app with android:targetSandboxVersion="2". Then you can deploy your debug/prod version of your app with android:targetSandboxVersion="1" (the default value is "1" if you don't specify it explicitly).


Post a Comment for "App Install Failed - New Target Sandbox 1 Is Incompatible With Previous Value Of 2"