Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change name of project in Android Studio

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 the old project.

How do I change the pointed name into something else?

project name

like image 710
duk3r Avatar asked Nov 14 '14 15:11

duk3r


2 Answers

Try changing the contents of this file: C:\Path\To\Project\.idea\.name

like image 144
JstnPwll Avatar answered Sep 27 '22 21:09

JstnPwll


  1. Change the name in manifest file. android:label="@string/app_name"
  2. There's a build.gradle file inside your app folder. Change the package name from there. Make sure you edit the build.gradle file inside your app folder, not the one in the root of your project.
like image 41
Adarsh V C Avatar answered Sep 27 '22 22:09

Adarsh V C