I would like to copy my Android project and create a new project from the same files just with a different name and different project. The purpose of this is so I can have a second version of my app which is ad supported.
Asked
Active
Viewed 441 times
0
-
Why don't you use git to create a new branch of your project? – Minh Dao Jan 09 '20 at 08:59
2 Answers
0
Copy past your project in new directory and follow this link -> Change project root directory name
Or you can use git and create a new branch of your project.

DLx
- 97
- 1
- 13
0
You can use Git to manage your local project, and Github to create a private project and upload your project there. This is one of the best ways to manage your code and create a new app version.
If you don't want to use them, you may need:
- copy all files to a given directory;
- change the directory name of your package;
- replace all package name in your AS;
- change your gradle file of your app to change application id.

Shawn Wong
- 554
- 6
- 15