Reputation: 41
I recently forked a project and created a signed apk, I already changed the package name both in gradle file and manifest, and also signed the apk with signature version V1 and V2, but upon installing it says "app not installed". The original app was installed in my device, but after uninstalling it the signed apk I created starts installing. Any idea what caused this to happen?
Upvotes: 0
Views: 108
Reputation: 1475
Android treats apps as different kernel-level user, they must have a unique user ID and group ID.
My guess is that you didn't fully change it by rename those strings, try these steps and see if it can help you :
Compact Empty Middle Packages
optionsrename package
function of Android studioFor more details: Android Studio Rename Package
And sometimes same app with different key (debug / release key) will cause the same problems.
Upvotes: 1