First post, please be gentle.
I've been trying to work out the best way to have two versions of my App on my Android device:
1) The current development (unstable) version
2) The current release (stable) version
I understand that the package name (part of the build configuration) must be unique and that it's only possible to have one version of a package installed on my device at any one time.
So I'm currently wondering if it's possible to use conditional compilation and a #CustomBuildAction to append (e.g.) ".dev" to the package name when the compilation mode is set to Debug (using the DEBUG conditional compilation identifier)?
How have others done this for apps that they are developing that they also use themselves?
Thanks,
Misterbates
I've been trying to work out the best way to have two versions of my App on my Android device:
1) The current development (unstable) version
2) The current release (stable) version
I understand that the package name (part of the build configuration) must be unique and that it's only possible to have one version of a package installed on my device at any one time.
So I'm currently wondering if it's possible to use conditional compilation and a #CustomBuildAction to append (e.g.) ".dev" to the package name when the compilation mode is set to Debug (using the DEBUG conditional compilation identifier)?
How have others done this for apps that they are developing that they also use themselves?
Thanks,
Misterbates