Reputation: 195
How can I install the sample application with different names on Android device ?
I have developed one application. I want to install two instances of the same application, one with real data and another one with dummy data.
How can I do this?
[solution]
I followed below steps for my dummy applicaiton:
project -> Android tools -> Rename Application package.
Now both instances are running fine.
Upvotes: 2
Views: 3198
Reputation: 41
If you use Android Studio browse the project to Gradle Scripts>build.gradle(Module:app) and change applicationId.
Upvotes: 4
Reputation: 23638
Just you need to change the package name of your application. And you will get the two instances of same application.
Upvotes: 1