How to change name of project in Android Studio

前端 未结 7 2110
暗喜
暗喜 2021-02-19 15:22

Imported an eclipse project into Android Studio and saved it in a new folder. Changed the package name and everything to new names but the Project\'s name is still the one from

7条回答
  •  时光取名叫无心
    2021-02-19 15:31

    You can try something like this in your settings.gradle file:

    rootProject.name = "YOUR_PROJECT_NAME"
    

    After restarting of Android Studio it will also change text in title bar to YOUR_PROJECT_NAME.

    Tested on Android Studio 2.2 RC2

提交回复
热议问题