Meli Oktavia
Meli Oktavia

Reputation: 511

Rename root module in android studio

How to rename root module in android studio? I have tried (right click the module then click refactor then click rename) but I got warning "can't rename root module"

Upvotes: 46

Views: 41929

Answers (7)

Bhavesh Chand
Bhavesh Chand

Reputation: 625

Change in settings.gradle

dependencyResolutionManagement {
        repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
        repositories {
            google()
            mavenCentral()
            jcenter() // Warning: this repository is going to shut down soon
        }
    }
    
    rootProject.name = "project_name" // change this 
    
    include ':app'

Upvotes: 1

Sumit Garai
Sumit Garai

Reputation: 1331

I pressed Ctrl+Shift+F to search my current root module name and found the name to be in the settings.gradle file as rootProject.name=.... I renamed it and synced the project (File -> Sync Project with Gradle Files) and the root module name was updated.

Upvotes: 102

A Hashemi
A Hashemi

Reputation: 339

In root of your project open setting.gradle and change rootProject.name='YOUR NEW NAME'

then close and restart android studio

Upvotes: 24

myworldbox
myworldbox

Reputation: 412

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


Upvotes: 4

Giuseppe Amato
Giuseppe Amato

Reputation: 71

This is tested for a pure Java projects (without any C/C++ code):

  • close the project and make a copy of the folder containing it
  • rename the new copied folder to reflect new project name
  • delete all *.iml files
  • reopen the project: Android Studio will resync Gradle, rebuild iml files
  • review the modules.xml file to remove reference to old project name
  • new project renamed works exactly as previous one: you can run the app without completely reinstalling it (all previous app data/settings/cache will be preserved)

Upvotes: 4

TT--
TT--

Reputation: 3205

Close the project. (File > Close)

Rename the root folder of the project.

At the welcome screen "Open an existing Android Studio project" and provide the new path.

On your link that's the second answer or see also here.

Upvotes: 4

Shanto George
Shanto George

Reputation: 994

In your Project pane, click on the little gear icon ( setting icon at the right top)

Uncheck / De-select the Compact Empty Middle Packages option

Your package directory will now be broken up in individual directories Individually select each directory you want to rename, and:

Right-click it

Select Refactor

Click on Rename

In the Pop-up dialog, click on Rename Package instead of Rename Directory

Enter the new name and hit Refactor

Allow a minute to let Android Studio update all changes

Note: When renaming com in Android Studio, it might give a warning. In such case, select Rename All

Upvotes: 2

Related Questions