As mentioned by @MehulTheXammer , if none of the options mentioned above by others works, use adb command prompt to uninstall the package. > adb uninstall xyz.package.name
@AbhayShiravanthe said:
As mentioned by @MehulTheXammer , if none of the options mentioned above by others works, use adb command prompt to uninstall the package. > adb uninstall xyz.package.name
@MehulTheXammer said:
An alternate solution is to run the command i.e. adb uninstall com.theircompany.packagename from android command prompt located at below path: "AppData\Local\Android\android-sdk\build-tools"
@softlion said:
Delete your existing app. It will not be listed under applications with the display name nor have a launch icon. You will find it under Applications with its package name instead. It always is there. Uninstall the package and deploy your new version normally.
Posts
As mentioned by @MehulTheXammer , if none of the options mentioned above by others works, use adb command prompt to uninstall the package.
> adb uninstall xyz.package.name
This will solve the issue.
I was having this problem with VS Android Emulator ,Removing the old Mono Runtime from the emulator solved it for me.
settings->apps->uninstall
My story:
I got this error on a device that had no issues earlier. Once I got to this thread tried the following:
Do factory reset and then try. i renamed package name then it is working fine, with old name not working. strange
Perfect solution
That one helped me.
I appreciate your comment...
For me the error was inside the Project Options.
I set Support Architectures,
armeabi;
armeabi-v7a;
x86;
x86_64
For me the error was inside the Project Options.
I set Support Architectures,
armeabi;
armeabi-v7a;
x86;
x86_64
Thanks
I found the solution finally.
adb uninstall com.company.apppackage
You have to uninstall your old version of APK from your android device by using above command.
Thanks!