Reputation: 9383
I'm developing an Android-app. Debugging works fine, but after installing the distributed version of the app from the Play Store, I can't run it anymore while developing, because it says the signing certificates are different.
I'm guessing this has something to do with the keystores. Is there any way to use both the distribution and debug keystores at the same time, or should I deinstall the app each time before debugging ?
Upvotes: 1
Views: 82
Reputation: 47817
Is there any way to use both the distribution and debug keystores at the same time, or should I deinstall the app each time before debugging ?
No. It's not possible. Because when you debugging from IDE it's used default debug.keystore
but your device contains built with your own private keystore
.
You can set your OWN keystore
as a Default in Android Studio
.
OR
You should uninstall your previous version and install the new one.
Upvotes: 1