Search code examples
androidrename

Renaming Android package name using Android Studio


I Was Created an android application with package name of com.example.******.sample . I need to refactor the package name into org.newOrg.*******.sample . I was already tried refactor method. But its parent "com" was not changed into "org" . Tell me any solution to refactor the entire package name.

Thanks in advance


Solution

  • This modification needs three steps :

    1. Change the package name in the manifest
    2. Refactor the name of your package with right click -> refactor -> rename in the tree view, then Android studio will display a window, select "rename package"
    3. Change manually the application Id in the build.gradle file : android / defaultconfig / application ID Then clean / rebuild the project