I am working on Android application which will share the database. For that, I\'m using android:sharedUserId in both application\'s Manifest file. When I am try
This means something about your app was not correctly uninstalled. This steps help to force uninstall from internal commands:
$ adb shell
shell@android:/ $ su
shell@android:/ # pm list packages | grep
package:com.android.providers.applications
package:com.android.providers.calendar
package:com.android.providers.contacts
package:com.android.providers.downloads
...
shell@android:/ # pm uninstall
shell@android:/ # exit
shell@android:/ $ exit
$
Basically, you log into android shell, become superuser, find problematic packages, and uninstall it