Copy existing project with a new name in Android Studio

后端 未结 19 2314
野趣味
野趣味 2020-11-29 17:31

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

19条回答
  •  鱼传尺愫
    2020-11-29 17:51

    I had problems with this following:

    https://google-developer-training.github.io/android-developer-fundamentals-course-concepts-v2/appendix/appendix-utilities/appendix-utilities.html

    on Android Studio version: 3.3.2

    until I killed the .idea/workspace.xml file.

    $ cp -rv Testcopysource/ TestCopyDest
    $ rm TestCopyDest/.idea/workspace.xml
    $ stdio.sh & # Run Android Studio on Linux
    

    Prior to doing that Android Studio would still point to the original source folder and all renames were applied to the original source files (within Testcopysource in my example above).

提交回复
热议问题