How to rename a project in "Recent Projects" in Android Studio 1.0.2?

How to change the name of the project in "Recent Projects" on the "Welcome" screen in AS (1.0.2)?

The problem is in one of my projects, but it is covered by the NDA, so it cannot be shown here. It was imported to AS from Eclipse. It was in the code directory and imported as a code AS project. I already renamed the folder, the project to the desired name and everything is fine, but the code is still present in "Recent Projects" and the name of Android Studio. This is not critical, but a little annoying :).

enter image description here

For example, I need to change 'Gradle' to 'SOdle'.

This name is also used in the window title.

enter image description here

I found the same question / answer for IntelliJ IDEA

but it looks like AS overrides this screen

enter image description here

Update:

As I said earlier, I can rename the project and its directory, but the old Gradle name remains, as in the "Recent Projects" and the title. See images below.

enter image description hereenter image description here

+5
source share
1 answer

Found.

This name is saved in the .idea/.name file. You need to open it and change it there. After rebooting AS.

enter image description here

enter image description here

+7
source

Source: https://habr.com/ru/post/1210351/


All Articles