How to change the name that appears on the top of android studio window?

Viewed 321

I have created a project with the name: "ToDeleteImmediately". Later i regret and wanted to work with this project, so i decided to change it's name to "AllScoresScreen". I have made the following changes: 1.Renamed the folder name from com.example.ToDeleteImmediately to com.example.allScoresScreen. 2.Renamged the package name 3.Renamed the app name in Manifest.xml 4.In Explorer also changed the folder name But i still see the old name in the Android studio Please see the attached pic. Maybe someone can tell me what can i do because it's really bothering me.

enter image description here

2 Answers

Recent versions of Android Studio have been putting a display name for the project in settings.gradle as rootProject.name:

include ':app'
rootProject.name = "My Application"

That value is not essential, so you can remove it or change it to a new value as you see fit.

It should be enough to rename the top project folder on file system, then reopen project

Related