Android Studio: how to create fast clones or copies of the current project

Android Studio builds on Ubuntu 13 June 27

I am having trouble understanding how to clone a project in Android Studio. I would like to take Project01 and copy it to a new Project02 and make updates / test / stablize and copy it to Project03 and continue.

I'm looking for options like in Project01, I just “saved as” Project02, and then open Project02 and continue.

I read about the template and I created the templates, but I can’t find where I can apply the templates when using the “new project” quick launch option. Or how to apply templates to a new project that I just created.

+6
source share
1 answer

You can make a copy of the project directory outside of Android Studio, and then import this copy as a new project into Android Studio. If you want to back up your code regularly, you might be better off using a version control system such as Git .

+5
source

Source: https://habr.com/ru/post/948430/


All Articles