Reputation: 297
I'd like to know if there is a way to have two version of our application on the same device.
The purpose is to have the one using our production api to use it normally while having one we could deploy inside our team using our test api without having to uninstall the production one?
We are deploying production through the playstore and for the moment we are using Crashlytics to deploy in intern. If we could keep using this tools it would be great.
If you have any idea?
Regards,
Upvotes: 2
Views: 698
Reputation: 3201
You can use build variant in android studio.
Go project architecture and add flavor and set diifrent value according to need
http://tools.android.com/tech-docs/new-build-system/user-guide
https://developer.android.com/studio/build/build-variants.html
Upvotes: 2