Copy existing project with a new name in Android Studio

android-gradle-plugin, android-studio, build.gradle, gradle

Solution

The steps in the link you specified should also work for Android Studio. Just make a copy (using a file manager) of the entire module folder and give it a new name. Now open it up and use `Refactor -> Rename` (right click on the item you want to rename) to rename your module and package.

See this for details about refactoring in IntelliJ/Android Studio.

Problem

I would like to copy my Android project and create a new project from the same files just with a different name. The purpose of this is so I can have a second version of my app which is ad supported in the app store. I found this answer here: Android - copy existing project with a new name But it's for Eclipse. How can I do this in Android Studio?

Original source

Related problems