Hello guys,
I am developing an application for android. I’ve been testing it in my device several times. Now we have uploaded it to the Google Play Store in Beta and when I try to install it I get the following error on my device with Android 5.0.1
unknown error code during application install 505
The problem, as far as I understood, is that 2 different applications with the same name are requesting permissions, and that creates a conflict in my phone.
This answer from stackoverflow seems to have interesting insight, but unfortunately I dont really know what to do with it, I never developped for Android before.
Could you give a clue on what to do next?
Do I have to edit any of the AndroidManifests in my code as suggested by the accepted answer? Which one? Do I need to republish that afterwards? Wouldn’t that create a new conflict eventually?
I tried running
adb uninstall com.MYAPPNAME
and
adb uninstall com.MYAPPNAME.app.permission.C2D_MESSAGE
from the command line in the directory if the ionic project but all I got was a
Failure [DELETE_FAILED_INTERNAL_ERROR]
error message
Thank you very much!