0

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.

Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62
asiul
  • 1
  • 1

2 Answers2

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:

  1. copy all files to a given directory;
  2. change the directory name of your package;
  3. replace all package name in your AS;
  4. change your gradle file of your app to change application id.
Shawn Wong
  • 554
  • 6
  • 15