How do I configure my project to be able to install the debug version alongside the release version when using GCM, ContentProvider, AccountType? (without the use of flavors)
I keep getting errors such as: INSTALL_FAILED_CONFLICTING_PROVIDER or INSTALL_FAILED_DUPLICATE_PERMISSION
Installing a debug apk and the release apk on the same device is tricky if you are only using build types and not flavors (Why Build types and not flavors)
Most blog post are either outdated (talking about packageName) or force you to use flavors because the solution they propose does not support
applicationIdSuffix
and abuild type
cannot declareapplicationId
therefore you need to use aflavors
The solution I propose uses
For this to work I use
applicationIdSuffix
, manifest placeholders,BuildConfigField
andresValue
in the Gradle file.The only problem left is when you want to have a different name for app and per language the string is not set as translatable (bug aosp tracker) This forces you to set
abortOnError false
otherwise you won't be able to make a release build.build.gradle
AndroidManifest.xml
Sync adapter xml
Account authenticator
ContentProvider
I have a constant for Authority which takes it from the BuildConfig.
Account type
To get the account type you take it from the BuildConfig too.
Multi language app name
If you want different names per app & language:
debug/values-en/strings.xml
debug/values-fr/strings.xml
main/values-en/strings.xml
main/values-fr/strings.xml