[2013-04-06 14:48:32 - SplitPaneLayout-Demo] Android Launch! [2013-04-06 14:48:32 - SplitPaneLayout-Demo] adb is running normally. [2013-04-06 14:48:32 - SplitPaneLayout-Demo] Performing com.mobidevelop.widget.Demo activity launch [2013-04-06 14:48:32 - SplitPaneLayout-Demo] Automatic Target Mode: using device '015d188469381013' [2013-04-06 14:48:32 - SplitPaneLayout-Demo] Uploading SplitPaneLayout-Demo.apk onto device '015d188469381013' [2013-04-06 14:48:32 - SplitPaneLayout-Demo] Installing SplitPaneLayout-Demo.apk... [2013-04-06 14:48:34 - SplitPaneLayout-Demo] Installation error: INSTALL_FAILED_UID_CHANGED [2013-04-06 14:48:34 - SplitPaneLayout-Demo] Please check logcat output for more details. [2013-04-06 14:48:34 - SplitPaneLayout-Demo] Launch canceled! 13 Answers
Just delete "/data/data/your.package.name" on your device
5 Comments
rm -rf /data/data/your.package.name to delete all files and folders in it.If your device is not rooted and restarting doesn't work, I guess changing your package name is a good option if you're just debugging. Worked for me !
2 Comments
Just manually Uninstall your application from Setting->Application->Manage Application->Your Application This was getting because some data or string was in used so the system can't able to delete it that's why getting this error.
If still getting this problem then close your emulator then start your emulator with wiping your data.
here is more detail regarding this
2 Comments
After a lot of research I could fix this issue just by changing the ApplicationId. This process does not require root or factory reset and wiping data in /data folder.
- right click on the root folder of your project.
- Click "Open Module Setting".
- Go to the Flavours tab.
- Change the applicationID to whatever package name you want. Press OK.
Credits to this answer https://stackoverflow.com/a/28336400/4657700