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
You can try something like this in your settings.gradle file:
settings.gradle
rootProject.name = "YOUR_PROJECT_NAME"
After restarting of Android Studio it will also change text in title bar to YOUR_PROJECT_NAME.
YOUR_PROJECT_NAME
Tested on Android Studio 2.2 RC2