Android Studio Copy Module Android Studio Copy Module android android

Android Studio Copy Module


I just copied/pasted it from within Android Studio, and that worked for me:

  1. In Android Studio, make sure you have the Project view selected for your Project pane.
  2. Select module and copy.
  3. Select the folder name of your project in the Project pane (this should be the name of your project and the parent directory for the module).
  4. Paste it in (it will ask you to rename it).
  5. Add the new module to your settings.gradle file.

    include 'old-module', "new-module"

  6. Rebuild/sync your project (you should see another module option now)

  7. Run on your device/emulator.


File -> New -> Import Module -> paste module's path DONE