How To Rename A Project In Android Studio
I am currently using Android Studio 1.4.1, the latest version. I would like to distribute my program among my friends, but it was a school final, so it's named FinalProject. I'd li
Solution 1:
This always works for me, it will change the project's name, but be careful, it will not rename its internal packages.
- Close everything on your screen.
- Locate your project with your File explorer (Files, Finder, Windows Explorer or even the Terminal:
$ cd your/path/to/file
). - Rename your project with the File explorer (make sure you do not get inside the project, just locate it).
- Open Android Studio.
- Import the renamed project.
After this, Android Studio will automatically build all the required files.
Post a Comment for "How To Rename A Project In Android Studio"