[android] Change project name on Android Studio

I want to change the name of my project and module. But if I try to rename them Android Studio notify me some errors...

e.g. I want to change the name from "MyApplication" to "AndroidApp" as shown in the image below.
enter image description here
In the first rectangle I want to change it in:

AndroidApp ("G:...\Android\AndroidApp).

In the second rectangle I want to change it in:

AndroidApp [AndroidApp-AndroidApp]

edit: This is the log:

Gradle: Project 'AndroidApp' not found in root project 'MyApplicationProject'.

build.gradle:

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.5.+'
    }
}
apply plugin: 'android'

repositories {
    mavenCentral()
}

android {
    compileSdkVersion 18
    buildToolsVersion "18.0.1"

    defaultConfig {
        minSdkVersion 7
        targetSdkVersion 16
    }
}

dependencies {
    compile 'com.android.support:support-v4:18.0.0'
}

settings.gradle:

include ':MyApplication'

This question is related to android android-studio

The answer is


What worked for me is:

GoTo

setting.gradle
  1. change the name in it.
  2. go to the app root folder which you want to change and refactor--> rename it.
  3. close the android studio.
  4. browse to the folder and change the name
  5. start android studio again.
  6. do the gradle sync.

And you are done!


You can easily rename using refactor.

  1. Write click on the project root folder and click refactor.

  2. Then click on the rename, there will be a popup, you can give new name there.


  1. first go to the values folder
  2. then go to the String Folder
  3. find the app_name
  4. Change the name of the application in string Tag
  5. Finished

  1. Close Android Studio.

  2. Rename the folder of the root of the project. For example, change "MyApplication" to "Myblablabla".

  3. Delete the '.idea' folder.

  4. Open Android Studio, and import the updated project.


What works for me is,

Go To Build.gradle Change ApplicationId & sync project.

Right click on your project > Rename > Rename Package.

Run your app and boom.

Hope this works as did for me


Video tutorial: https://youtu.be/7aQjiae2doU

  1. Refactor the name to com.example.[NewFileName] in path:

    app>java>com.example.[OldFileName]


  1. Go to strings.xml and change code to <string name="app_name”>[NewFileName]</string> in path:

    app>res>values>strings.xml


  1. Go to build.gradle (Module: app) and change code to applicationId "com.example.[NewFileName]” in path:

    Gradle Scripts>build.gradle (Module: app)


  1. Go to settings.gradle (Project Settings) and change code to rootProject.name='[NewFileName]' in path:

    Gradle Scripts>build.gradle (Project Settings)


  1. Press Sync now prompt

  1. Rename your folder to [NewFileName] outside Android Studio

  1. Reopen your project and rebuild project in path:

    Build>Rebuild Project



These instructions below worked (first time) for me in Android Studio 2.3. They involve creating a new app in Android Studio, then closing it and doing all the work in a file explorer and a text editor.

Refactor and Rename a Android Studio Project or App

Note: Requires a text editor which can do a global search-and-replace in a directory structure. The instructions propose Sublime Text, which I easily installed and ran.

It produced a new app which installed and ran beside the existing app. It still had the same screen name, which was fixed by editing Android:label="MyNewApp" in the manifest.


Change the Project Name


Change the name of your project by closing the Android Studio, go to your project folder, rename it…


enter image description here


Delete the .idea folder and .iml file. (To show hidden folders, press Cmd + Shift + . (dot) ).


enter image description here


Open the settings.gradle file with a text editor, like VSCode, and change the rootProject.name to your new project name.


enter image description here


Done! The project name has been changed! Just open your project with the Android Studio and Gradle will sync again.


UPDATE:

This answer is better.

OLD ANSWER: 1. Right click your

ackage name and Refactor -> Rename...

enter image description here

  1. When asked if you want to Rename directory or Rename package, choose Rename package

enter image description here

  1. Now in Finder, manually rename your root folder (the parent folder of your /app folder)

enter image description here

  1. Reopen project in Android Studio with new folder name

  2. Cmd + Shift + f for any instances of your old name in Android Studio, and change all of them to the new name.

  3. Change the applicationId in your build.gradle

BONUS ROUND:

  • You might need to update a .gitignore file if it was at the root of your project. Note that when swapping branches after doing this, you'll potentially see a bunch of files showing up in working changes, but don't worry they should go away after you merge in your renamed branch with updated .gitignore. Don't manually remove these as it can cause issues in Android Studio.
  • Delete your old root folder in Finder

  • Changing the name in res>values>strings.xml will change the app name that is shown in the apps menu after installation

  • Renaming the android studio project folder (when android studio is closed) will likely satisfy many developers


1.Edit settings.gradle file, change rootProject.name

rootProject.name = "FirebaseDemo"
include ':app'

2.Go to the project file folder, rename the file folder

3.Delete .idea folder in your project and rebuild the project


Update: This is an out-dated response from 2013 and only works for v2.2.2 and below.


  1. Right-click on your root project directory

  2. Select Refactor -> Rename

  3. Select rename project and change the name there.

  4. Also Select rename module and change it there as well. If you get an message saying module name already changed thats fine.

  5. Now right-click on the project root folder again and select Open Module Settings.

  6. Under the Modules section remove whatever folders are associated to your old project name.

  7. Apply Settings and hit OK.

  8. Restart Android Studio.

Hope that helps!


Close the android studio and Just rename the .iml file in your file explorer That's it


This did the trick for me:

  • Close Android Studio
  • Change project root directory name
  • Open Android Studio
  • Open the project (not from local history but by browsing to it)
  • Clean project

If your settings.gradle contains the below line, either delete it or update it to the new name.

rootProject.name = 'Your project name'

Edit:
Working in all versions! Last test: Android 4.1.1 Dec 2020.


Try to change android:label in AndroidManifest.xml and reinstall/rerun app:

<application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme">

Just change the application id in build.gradle

applicationId "yourpackageName"

For changing application label, in manifest

<application 
android:label="@string/app_name" 
... />

To just rename the project:

  1. Refractor and rename the top level directory
  2. Close Android Studio
  3. IMPORT the whole project again

To change the package name:

The easiest and fastest solution is here: https://stackoverflow.com/a/35057550/4908798


For me the following works:

  1. Close Android Studio.
  2. Rename the folder of the project from MyApplication to NewProjectName
  3. Rename MyApplication.iml file to NewProjectName.iml
  4. in NewProjectName.iml change every MyApplication text to NewProjectName
  5. in .idea/modules.xml change every MyApplication text to NewProjectName
  6. in .idea/workspace.xml change every MyApplication text to NewProjectName
  7. Start Android Studio.
  8. All the previous settings remain, and "app" module as well!

The way it worked for me in order to replace the old name of my project for a new one (everywhere in my codebase) is the following:

  1. Close Android Studio.
  2. Rename the root folder of your project.
  3. Open Android Studio. It will not find the old project, so you must import it again. This step will generate the configuration again (no need to touch your .idea files manually), including a new .iml file with the new project name. Afterwards you can delete the old .iml file if you want.
  4. Once the renamed project is imported in Android Studio you need to rename your source packages to use the new project name in case you used the old project name as part of the package path.

NOTE: This worked for Android Studio 2.1.2


Go to [Tool Window\Project] by Alt+1, and change the level on the top-left corner of this window to Project (the other two are Packages and Android), then you can rename the Project name by Shift+F6. Type in the new name and press OK.

If you just want to change the app name which appears in the system, you can modify the android:title in the manifest.xml.


Hello RobertoAV96,

I have provided three solutions here. Choose whichever applies to your problem.

If you want to just change the name of the project root folder name, you can do it from the explorer:

  1. Just close the project in the studio, after copying path to the project. Close the project from the main welcome screen.
  2. go to the file explorer, copy this path on the address bar, and go to the folder.
  3. Rename the folder that is the root of the project.
  4. Rename the iml file in this root folder to the name of the folder. That is if the project root folder's name was say demo_project, there will be demo_project.iml file inside it. If you changed this folder's name to say my_project, then you have to change the name of the iml file inside it to my_project.iml.

Actually the refactor option from the Studio can do the same.

If you want to change the app folder's name, that is inside the root folder of the project, do the same in the explorer:

  1. Rename the app folder to the name you like to have.

[INFO: The APK file, that is generated for this project, will acquire the same first name followed by the suffix that represents the mode you build the signed APK for, that is either debug or release. Signed APK is found in it's respective folder of debug or release. The unsigned APK is located in output folder of build directory, all build, debug and release folders are found in the primary app folder, or the folder you have renamed this folder to].

  1. Suppose the name that you have given to this folder is my_project_app, open the folder and rename the app.iml, to my_project_app.iml after the name of the project.
  2. Now go to the project's root folder, and find the settings.gradle file.

The content of this file are the names of module folders that you include in the project, currently there is only one module, that is the main one :

include ':app'

This is corresponding to the old name of the app folder.

Hence you have to make the changes:

include ':my_project_app'

That's it. Now you can reload the project in the studio, and check the name of the APK that is generated.

If you want to rename the package name, say com.first.myproject to com.alpha.myproject:

  1. Again go to the explorer: Inside the hierarchy of folders in the src-->main-->java, your package is com-->first-->myproject. Make sure your Studio is closed.
  2. Rename the second folder first to alpha.
  3. Open the Studio now. Choose Replace in Path in the first package inside the java folder, in the Android mode of the left panel tree. This one is the package that you changed from the Explorer, that is: com.alpha.myproject instead of com.first.myproject. Change the instances of the string import com.first.myproject; in files to import com.alpha.myproject;. Check for just the string occurrence of com.first.myproject, and safely change it to com.alpha.myproject.
  4. Check for just the string occurrence of com.first.myproject, in build.gradle inside your main app module, and safely change it to com.alpha.myproject.
  5. Do not forget that this package name is also the signature and identity to your application project. If you have already published your application in the play store, then you have to setup a different project com.alpha.myproject afresh and unpublish com.first.myproject, affecting lots of users:- you have to broadcast to the users using push notification, in the latest version of old existing APK, that the new Application version will be released with different name, and you have to publish this new APK, restarting from version name 1.0. This destroys objective of having the application slot at play-store for the old APK. So you have to consult your client that what should be the name of their application package before starting the project.
  6. Don't forget that the signing and obfuscation of the application is equally important. You can issue command inside Studio to remove unnecessary resources from your project. You can manually deal with all the warnings that LINT produces.

Happy coding and Happy app publishing. :-)


For one, I'd strongly suggest updating to the latest Android Studio (0.3.7 as of now); there are tons of bug fixes.

You're running into bug https://code.google.com/p/android/issues/detail?id=57692, which is that if you try to use the UI to rename modules or your project, it doesn't update the build files. Sorry, it's really broken right now. I'd suggest changing the directory names directly in the filesystem, and updating your settings.gradle file to reflect the changes. Your project on disk should look something like this (with many more files than what's shown here):

projectFolder
|--settings.gradle
|--applicationModuleFolder
|  |--build.gradle
|  |--src

it uses projectFolder's name as the project name and applicationModuleFolder as the name of the module that your Android App lives in (the upper and lower outlined boxes in your screenshot, respectively). I think the way your project is set up now, they both have the same name; you can rename both to the same new name if you like, or you can give them different names; it doesn't matter.

Once they're renamed, edit your settings.gradle file; it will look something like:

include ':applicationModuleFolder'

just change the name to your new name there as well. Once these changes are made, click the Sync Project with Gradle Files button in the toolbar (if you're running a very old version of Android Studio, it may not have that button, so you can close the project and reopen it in that case) and it should pick up the changes.


update July/2017: tested and worked


  1. Open project folder (you could open it through Android Studio itself see this )
  2. now close Android Studio
  3. change the yourOldProjectName.iml to the a new name
  4. rename the parent folder to the same new name.
  5. re-open Android Studio --> File --> Open--> path to your renamed.im

Here's what I did in Android Studio Beta (0.8.14)

  1. Changed the package name manually in the manifest file
  2. Navigated to build -> source -> r -> release and drilled down until I found R.java
  3. Selected the file and pressed F6 to rename
  4. Then from the Build menu selected Make Project
  5. Clicked the first error and pressed Shift+F6 on the package name and renamed which updated all my source files
  6. Selected my project name in Android Studio, right clicked -> Refactor -> Rename and changed the name there too.
  7. Next went to app -> build.gradle and updated my applicationId
  8. Navigate to .idea -> .name file and rename your Android Studio project in there too
  9. Just to clean up I deleted the old package folder inside build -> source -> r -> release

And vola, my package name has now changed and builds successfully.


Just go to res>values>strings.xml. One line says Somethig-your name

<string name="app_name">Somethig-your name</string>

Just replace your original name to

 <string name="app_name">Your Name</string>

A very quick way to solve this as at November 2020 is by the following steps

  1. hit the shift key twice, a pop up will show search for a file named "settings.gradle" when it opens change the rootProject.name = "Old-name" to rootProject.name = "new name" then sync.

  2. hit the shift key twice, a pop up will show search for a file named "string.xml", when it opens change <string "app_name">old-name to <string "app_name">new-name

  3. close android studio

  4. locate androidStudioProject directory on your machine, open it and find the project by its old name, rename it to the new name.

  5. open Android Studio goto File > Open > "new name". open it from there.

this is currently working on Android Studio 4.1.1


This approach 100% working

Just do these simple step:

  • Exit Android Studio
  • Rename the main project folder from your explorer
  • Open Android Studio and Open your project
  • Rebuild and Enjoy.

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


You can change the name that is shown in the title bar in the file ".idea/.name".


Just find the name " android:label="AppName" " from the Android Manifest . Just rename the label name (eg: "AppName" here) all such android:label in the AndroidManifest.xml . Just save it ! When you run the app you will see the new Name


I just went into the manifest and changed android:label="...." to the name of the application. Once Id changed this, the title and the actual app name changed to that :)


To change the apps name in Android Studio:

  1. Close the project in Android studio and get rid of it from the quick start side of the launcher ( Should be a mini next to the name).

  2. Close Android Studio.

  3. Go into where your app file is located and rename it (Under My Documents Usually).

  4. Restart Android Studio, select add new project and navigate to the folder that was renamed.

Changing the label of the launcher of the application / The applications actual name:

  1. Go into your initial folder (app)
  2. Go into manifests
  3. Go into AndroidManifest.xml.
  4. Rename android:label= _____ to whatever you want to rename your app to

Eg: android:label="Developer Portal".

  1. Click Save All.

it will work fine for me

Change Following.

Step 1: Make sure ApplicationId And PackageName will Same. example :

  android {
  defaultConfig {
                     applicationId "com.example.myapplication"
                 }
       }
 and package name the same. package="com.example.myapplication"

Step 2 delete iml file in my case :

  Go To Project> >C:\Users\ashif\Documents\MyApplication  .iml file // delete 
if you forget Project Path Then Go To android Studio Right Click on app and go to  Show in Explorer you get your Project and remove .iml file

Step 3 Close Project

Step 4 Now Copy Your old Project and Paste Any other Root or copy Project Folder and paste Any other Dir.

 Example C:\Users\ashif\Documents/MyApplication 

Step 5

Now open Android Studio and open Existing Project 
C:\Users\ashif\Documents/MyApplication 

Try it will work


Here is how it all changes in seconds... in your "manifest.xml" find "android:label=" in front of it just type your new name inside "" for example: android:label="My new name"

Its done! your welcome ;)