user3021918
user3021918

Reputation: 195

Installing same application with different names

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

Answers (2)

Bogdan
Bogdan

Reputation: 41

If you use Android Studio browse the project to Gradle Scripts>build.gradle(Module:app) and change applicationId.

Upvotes: 4

GrIsHu
GrIsHu

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

Related Questions