Перейти к содержимому

Как поменять название проекта в android studio

  • автор:

How to rename an Android project

Sometimes, you have worked a lot on an Android project and realize you need to rename the project. However, you’re not sure how to do that. There are lots of configuration files, .xml files, and gradle files in Android Studio that you’re afraid to break things up. So you end up creating a new Android Studio project, with the correct name, and then pass the source files from the old project to the new one.

Although that brute-force way works, there’s a better way to achieve that. I will outline the steps you need to take. If you follow this steps carefully, it would be like if you hadn’t even renamed the project and had created it with the correct name from the start.

  1. Rename the root folder where the project is located.
  2. Open settings.gradle and change this line:

3. Open app/build.gradle and change this line:

Make sure to not include spaces in here (Java package name don’t support spaces!)

4. Open app/src/main/AndroidManifest.xml and change the following line:

5. Change the package names (names of directories + package statements in Java) of you app source files. You have to change all package names under the folders main , androidTest , and test .

NOTE: If you are using the default test files included when you create your Android project, go to the ExampleInstrumentedTest.java file under the androidTest folder, and change this line inside the useAppContext test case:

6. Update app/src/main/res/values/strings.xml :

7. If you included native code in your project (in C or C++, under the cpp folder), you also need to update the signatures of the JNI functions:

How to change your Project Name & Package Name in Android Studio

Today, I’m going to show you how to change your project name and package name in your project very easily!

Let’s dive right into it!

Change the Project Name

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

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

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

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

Change the App Name

Usually, when you change the project name, you wanna change the name of your app too.

Go to the res folder > values > strings.xml and change the app_name to your new name.

Change the Package Name

To rename your package name, all you have to do is go to your AndroidManifest.xml file, put your mouse cursor in front of the part of the package name you want to change.

Right-Click > Refactor > Rename

In the new window press Rename package

Change name and press Refactor

…and press Do Refactor at the bottom.

Your package name is usually in format com.domain.appname, in this example, we changed the appname part, but you can do the same steps for the domain.

Last, go to your module-level build.gradle file and change the package name in applicationId

Done! Package name has changed!

If you have any questions, please feel free to leave a comment below

Android Developer ( Dev Logs )

I wanted to create a new application with the same code from my previous application.
I wanted to just rename it , rather than going through a complete copy paste of all the java files and android manifest file.

Some screen shots which I took while renaming my project.

Right Click on the Package name -> Refractor ->Rename -> enter the name of the package ->Click “Refractor”.
Do not edit any of the build files except “build.gradle” under the “app” folder.
— You have to rename the :

defaultConfig <
applicationId «com.XXXX.XXXXX»
minSdkVersion 15
targetSdkVersion 23
>

Dont forget to rename your
1 — AndroidManifest.xml file :

android:versionCode=»XXXX»
android:versionName=»XXXX»

You might get some errors. Just click on Refractor and Rebuild the project. You are done. You have a new application with the same code.

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’.

eyllanesc's user avatar

36 Answers 36

This did the trick for me:

  • Close Android Studio
  • Rename project root directory name
  • Open Android Studio
  • Open the project
  • Clean project

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

Edit:
Working in all versions! Last test: Android Studio Chimpmunk Jun 2022.

Ilya Gazman's user avatar

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

Moritz's user avatar

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

Right-click on your root project directory

Select Refactor -> Rename

Select rename project and change the name there.

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

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

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

Apply Settings and hit OK.

Restart Android Studio.

user's user avatar

askilondz's user avatar

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.

VIISHRUT MAVANII's user avatar

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

bastami82's user avatar

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

NIKHIL PUNNOOSE's user avatar

UPDATE:

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

Reopen project in Android Studio with new folder name

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

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

Adam Johns's user avatar

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

Just replace your original name to

Close Android Studio.

Rename the folder of the root of the project. For example, change «MyApplication» to «Myblablabla».

Delete the ‘.idea’ folder.

Open Android Studio, and import the updated project.

Pang's user avatar

hedgehog's user avatar

What worked for me is:

  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!

Uzair's user avatar

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

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

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

vanshu's user avatar

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):

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:

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.

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

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.

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

close android studio

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

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

this is currently working on Android Studio 4.1.1

Mubarak Tahir's user avatar

You can try something like this in your settings.gradle file:

After restarting of Android Studio it will also change text in title bar to YOUR_PROJECT_NAME .

Tested on Android Studio 2.2 RC2

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

Gradle Scripts>build.gradle (Module: app)

Gradle Scripts>build.gradle (Project Settings)

  1. Press Sync now prompt
  1. Rename your folder to [NewFileName] outside Android Studio

myworldbox's user avatar

Just change the application id in build.gradle

For changing application label, in manifest

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.

NicolasMoise's user avatar

蓝钦城's user avatar

You can easily rename using refactor.

Write click on the project root folder and click refactor.

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

Sudharshan's user avatar

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

Saeed Rehman's user avatar

To change the apps name in Android Studio:

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).

Close Android Studio.

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

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.

Jamie A-Reade's user avatar

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!

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.

changing following thing worked for me. settings.gradle-> rootProject.name=’MyEvinApp’ change rootProject.name will take android studio as project name

Mohd Qasim's user avatar

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

Sufian's user avatar

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 😉

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 🙂

Jamie A-Reade's user avatar

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 :

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

Hence you have to make the changes:

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

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *

https://alkogolizm.vyvod-iz-zapoya-v-stacionare-samara11.ru/