Is there a way to debug my app on my smartphone without uninstall the play Store release? I want to use my app, but the debug should not edit the preferences. I would like to use two different apps. Naturally without changing a lot of code each time I want to export as release apk.
Am I asking too much?
The solution is changing the applicationId in the app build.gradle file as suggested by the official documentation:
android {
...
buildTypes {
debug {
applicationIdSuffix ".debug"
}
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With