Artur Couto
Artur Couto

Reputation: 498

Cloning an Android Application

I made an application for android, but I need to create copies of the same application. I'll have to change the package name, and also all other generated files (/ bin) to the new name of the application.

The divergence between the two applications (the original and copied), in addition to those already mentioned, will be only the strings and styles files.

Is there any simple way to do this? (Maybe creating a library, I do not know exactly how to do this) Thanks!

Upvotes: 0

Views: 821

Answers (1)

ajacian81
ajacian81

Reputation: 7569

I'm not sure what your difficulty is in this case. You'd just make a copy of your project folder and then import it into Eclipse as an existing project. In your Android manifest you would modify the package name, and your strings.xml would be modified for the new values (as well as your styles XML files).

Upvotes: 1

Related Questions