Pregunta

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?

¿Fue útil?

Solución 2

The solution is changing the applicationId in the app build.gradle file as suggested by the official documentation:

android {
    ...
    buildTypes {
        debug {
            applicationIdSuffix ".debug"
        }
    }
}

Otros consejos

The only thing you could do is change the package name in your AndroidManifest.xml.

The preferences would not be the only problem to face: You also won't be able to install the debug version over the release version due to the different certificates.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top