ChatGPT解决这个技术问题 Extra ChatGPT

Change package name for Android in React Native

I used react-native init MyApp to initialise a new React Native app. This created among others an Android project with the package com.myapp.

What's the best way to change this package name, for example to: com.mycompany.myapp?

I tried changing it in AndroidManifest.xml but it created other errors, so I'm assuming it's not the way.

Any idea?

Left click on package name and go for Refactor--> Rename option to rename package name.
What works best for me now is just find & replace
You can also try this saumya.github.io/ray/articles/72
for me search & replace worked
The pragmatic approach: 1- npx react-native init MycompanyMyapp, 2- Change only the applicationId "com.mycompany.myapp" in android/app/build.gradle. "However, the application ID and package name are independent of each other" – developer.android.com/studio/build/application-id

K
Khurshid Ansari

I've renamed the project' subfolder from: "android/app/src/main/java/MY/APP/OLD_ID/" to: "android/app/src/main/java/MY/APP/NEW_ID/"

Then manually switched the old and new package ids:

In: android/app/src/main/java/MY/APP/NEW_ID/MainActivity.java:

package MY.APP.NEW_ID;

In android/app/src/main/java/MY/APP/NEW_ID/MainApplication.java:

package MY.APP.NEW_ID;

In android/app/src/main/AndroidManifest.xml:

package="MY.APP.NEW_ID"

And in android/app/build.gradle:

applicationId "MY.APP.NEW_ID"

In android/app/BUCK:

android_build_config(
  package="MY.APP.NEW_ID"
)
android_resource(
  package="MY.APP.NEW_ID"
)

Gradle' cleaning in the end (in /android folder):

./gradlew clean

I also need to edit file BUCK to replace old package value with the new one. BTW, the 2 files MainAcitivity.java and MainApplication.java should be relocated to the new physical path.
I also renamed the directory android/app/src/main/java/com/old_app_name/ to ...com/new_app_name/ and it seems to work.
I had error "Failed to finalize session : INSTALL_FAILED_UPDATE_INCOMPATIBLE" until I manually forced cleaning of the android device simulator: adb uninstall my.package.name ... So directions are fine, but android simulator can "hold on" to old info in a bad way that makes it look like directions don't work. (And simply uninstalling the app did NOT fix this!)
For RN 0.60+, there's another LoC that has to be changed in MainApplication#initializeFlipper: Class<?> aClass = Class.forName("MY.APP.NEW_ID");
if you are using firebase then you also need to replace old package value in two instances of package_name in google-services.json
B
B--rian

I use the react-native-rename* npm package. Install it via

npm install react-native-rename -g

Then, from the root of your React Native project, execute the following:

react-native-rename "MyApp" -b com.mycompany.myapp

Thanks, broke the project
It broke my project, and had to create a new project :(
@AchaBill This answer is from 2017 things have changed since... be careful out there.
Worked like a charm in "react-native": "0.63.4", Thanks for saving my time. :)
This worked for me. Make sure you create a git branch just in case: git checkout -b newBranchName
M
Mufaddal Hamid

To change the package name from com.myapp to: com.mycompany.myapp (for example),

For iOS app of the react app, use xcode - under general. For the android app, open the build.gradle at module level. The one in the android/app folder. You will find

// ...
defaultConfig {
     applicationId com.myapp
     // ...
}
// ...

Change the com.myapp to whatever you need.

Hope this helps.


This is the easiest way to change your package name. Tho, not changing your local package name, this will change your next build package. Thanks! After doing this, do ./gradlew clean and then ./gradlew app:assembleRelease.
"However, the applicationId and the local package name are independent of each other", "applicationId uniquely identifies your app on the device and in Google Play Store" – developer.android.com/studio/build/application-id
not work for me No matching client found for package name 'xxxxx'
For changing the package name of android, I ran into this error and fixed stackoverflow.com/questions/35131769/…
R
Robert

you can simply use react-native-rename npm package.

Install using

npm install react-native-rename -g

Then from the root of your React Native project execute the following

react-native-rename "MyApp" -b com.mycompany.myapp

react-native-rename on npm

but notice that, this lib remove your MainActivity.java and MainApplication.java. before changing your package name, give a backup from this two file and, after changing package name just put it back to their place. this solution work for me

more info: react-native-rename


No effect if you don't change app name "Please try a different name."
actually, I try different name for my project. but when I change my project name react-native-rename removes that two files from my project.
A
Aishwarya

Goto Android studio

Right click your package (most probably com)-> Refractor -> Rename -> Enter new package name in the dialog -> Do Refractor

It will rename your package name everywhere.


It will not affect in the whole project structure i guess.
How can do with React-Native JS project ?
P
Park Keeper

The simplest one:

npx react-native-rename YourNewAppName -b com.YourCompanyName.YourNewAppName


WARN - this package seems not maintained years ago.
V
Varun Kumar

If you are using Android Studio-

changing com.myapp to com.mycompany.myapp

create a new package hierarchy com.mycompany.myapp under android/app/src/main/java Copy all classes from com.myapp to com.mycompany.myapp using Android studio GUI Android studio will take care of putting suitable package name for all copied classes. This is useful if you have some custom modules and don't want to manually replace in all the .java files. Update android/app/src/main/AndroidManifest.xml and android/app/build.gradle (replace com.myapp to com.mycompany.myapp Sync the project (gradle build)


A
Atul Yadav

The init script generates a unique identifier for Android based on the name you gave it (e.g. com.acmeapp for AcmeApp).

You can see what name was generated by looking for the applicationId key in android/app/build.gradle.

If you need to change that unique identifier, do it now as described below:

In the /android folder, replace all occurrences of com.acmeapp by com.acme.app

Then change the directory structure with the following commands:

mkdir android/app/src/main/java/com/acme

mv android/app/src/main/java/com/acmeapp android/app/src/main/java/com/acme/app

You need a folder level for each dot in the app identifier.

Source: https://blog.elao.com/en/dev/from-react-native-init-to-app-stores-real-quick/


K
Kiran JD

In VS Code, press Ctrl + Shift + F and enter your old package name in 'Find' and enter your new package in 'Replace'. Then press 'Replace all occurrences'.

Definitely not the pragmatic way. But, it's done the trick for me.


This worked fine on a Mac.. In my case, I have a RN project on iOS and Android. I just needed to make sure that I didn't make any changes to iOS proj.
Might also want to search/replace com/you/package mappings along with com.your.package.
This isn't enough (well, maybe it is, if you're using Expo). You also have to rename the folders under android/app/src/main/java and android/app/src/debug/java. The folder structure is e.g. com/acme/awesomeapp, and reflects the package name structure.
F
Federico Baù

REACT 0.64 | 2021 NO EXPO

Let original App name be: com.myApp Let New App Name: 'com.newname.myApp`

android\app\src\main\AndroidManifest.xml

Rename xml attribute: `package="com.newname.myApp"

android\app\src\main\java\com\[yourAppName]\MainActivity.java

Rename first line from package com.myApp; To package com.newname.myApp;

android\app\src\main\java\com\[yourAppName]\MainApplication.java

Rename first line To package com.newname.myApp;

In class private static void initializeFlipper reneme this line:

Class<?> aClass = Class.forName("com.myApp.ReactNativeFlipper");

To

Class<?> aClass = Class.forName("com.newname.myApp.ReactNativeFlipper");

android\app\build.gradle

On the defaultConfig rename applicationId

to "com.newname.myApp"

Run on command line: $ npx react-native start $ npx react-native run-android


Check google-services.json if you have one too.
S
Sudeep Bashistha

react-native-rename worked perfectly for renaming the app and the bundle identifier for my project as of the day of writing this answer.

To update app name: npx react-native-rename "New App Label" To update the bundle identifier: npx react-native-rename -b "appname.example.com"


K
Kjell

I have a solution based on @Cherniv's answer (works on macOS for me). Two differences: I have a Main2Activity.java in the java folder that I do the same thing to, and I don't bother calling ./gradlew clean since it seems like the react-native packager does that automatically anyways.

Anyways, my solution does what Cherniv's does, except I made a bash shell script for it since I'm building multiple apps using one set of code and want to be able to easily change the package name whenever I run my npm scripts.

Here is the bash script I used. You'll need to modify the packageName you want to use, and add anything else you want to it... but here are the basics. You can create a .sh file, give permission, and then run it from the same folder you run react-native from:

rm -rf ./android/app/src/main/java


mkdir -p ./android/app/src/main/java/com/MyWebsite/MyAppName
    packageName="com.MyWebsite.MyAppName"
    sed -i '' -e "s/.*package.*/package "$packageName";/" ./android/app/src/main/javaFiles/Main2Activity.java
    sed -i '' -e "s/.*package.*/package "$packageName";/" ./android/app/src/main/javaFiles/MainActivity.java
    sed -i '' -e "s/.*package.*/package "$packageName";/" ./android/app/src/main/javaFiles/MainApplication.java
    sed -i '' -e "s/.*package=\".*/    package=\""$packageName"\"/" ./android/app/src/main/AndroidManifest.xml
    sed -i '' -e "s/.*package = '.*/  package = '"$packageName"',/" ./android/app/BUCK
    sed -i '' -e "s/.*applicationId.*/    applicationId \""$packageName"\"/" ./android/app/build.gradle

    cp -R ./android/app/src/main/javaFiles/ ./android/app/src/main/java/com/MyWebsite/MyAppName

DISCLAIMER: You'll need to edit MainApplication.java's comment near the bottom of the java file first. It has the word 'package' in the comment. Because of how the script works, it takes any line with the word 'package' in it and replaces it. Because of this, this script may not be future proofed as there might be that same word used somewhere else.

Second Disclaimer: the first 3 sed commands edit the java files from a directory called javaFiles. I created this directory myself since I want to have one set of java files that are copied from there (as I might add new packages to it in the future). You will probably want to do the same thing. So copy all the files from the java folder (go through its subfolders to find the actual java files) and put them in a new folder called javaFiles.

Third Disclaimer: You'll need to edit the packageName variable to be in line with the paths at the top of the script and bottom (com.MyWebsite.MyAppName to com/MyWebsite/MyAppName)


F
Farhad Kabir

Use npx react-native-rename <newName>

With custom Bundle Identifier (Android only. For iOS, please use Xcode)

$ npx react-native-rename <newName> -b <bundleIdentifier>

First, Switch to new branch (optional but recommended)

$ git checkout -b rename-app

Then, Rename your app $ npx react-native-rename "Travel App"

With custom Bundle Identifier

$ npx react-native-rename "Travel App" -b com.junedomingo.travelapp 

After you change the name, please make sure you go to the android folder and run gradlew clean. then go back to the main project and run npx react-native run-android.

Also If you have google-services.json file in your previous project, change accordingly with the new one ... then you are good to go :)

See More here https://github.com/junedomingo/react-native-rename#readme


W
Waqar UlHaq

I've used the react-native-rename package.

In terminal run the command to install:

npm install react-native-rename -g

In the root of your React Native project, run the following command:

react-native-rename "NewNameOfApp" -b com.companyname.newnameofapp

P
Pouria Hemati

If you are using VSCode and Windows.

1.Press Control + Shift + F.

2.Find Your Package Name and Replace All with your new Package Name.

type "cd android" type "./gradlew clean"


M
Muhammad Haidar

To change the Package name you have to edit four files in your project :

 1. android/app/src/main/java/com/reactNativeSampleApp/MainActivity.java
 2. android/app/src/main/java/com/reactNativeSampleApp/MainApplication.java
 3. android/app/src/main/AndroidManifest.xml
 4. android/app/build.gradle

The first 2 files have the package name as something like below.

 package com.WHATEVER_YOUR_PACKAGE_NAME_IS;

Change it to your desired package name.

 package com.YOUR_DESIRED_PACKAGE_NAME;

You have to also edit the package name in 2 other files.

  android/app/build.gradle

  android/app/src/main/AndroidManifest.xml

Note if you have a google-services.json file in your project then you have to also change your package name in that file.

After this, you have to ./gradlew clean your project.


F
Fotios Tsakiris

Go to Android Studio, open app, right click on java and choose New and then Package.

Give the name you want (e.g. com.something).

Move the files from the other package (you want to rename) to the new Package. Delete the old package.

Go to your project in your editor and use the shortcut for searching in all the files (on mac is shift cmd F). Type in the name of your old package. Change all the references to the new package name.

Go to Android Studio, Build, Clean Project, Rebuild Project.

Done!

Happy coding :)


D
Damitha Dayananda

I fixed this by manually updating package name in following places

1) app.json               |  ./
2) index.js               |  ./
3) package.json           |  ./
4) settings.gradle        |  ./android/
5) BUCK                   |  ./android/app/
6) build.gradle           |  ./android/app/
7) AndroidManifest.xml    |  ./android/app/src/main/
8) MainActivity.java      |  ./android/app/src/main/java/**
9) MainApplication.java   |  ./android/app/src/main/java/**
10)strings.xml            |  ./android/app/src/main/res/values
11)ReactNativeFlipper.java|  ./android/app/src/debug/java/com/<package-name>/

P
Paul Roub

After running this:

react-native-rename "MyApp" -b com.mycompany.myapp

Make sure to also goto Build.gradle under android/app/... and rename the application Id as shown below:

defaultConfig {
        applicationId:com.appname.xxx
........
}

J
JRV

Before changing your react native package name! please make a backup of MainActivity.java and MainApplication.java file. Because this lib remove your MainActivity.java and MainApplication.java.

after doing this you can simply use react-native-rename npm package.

Install

npm install react-native-rename -g

Then from the root of your React Native project execute the following

react-native-rename "new_project_name" -b com.mycompany.newprojectname

finally you can check it out your new package name in your AndroidManifest.xml. Don't forgot to rename the package name in your MainActivity.java and MainApplication.java .

Thank you.


Now npm install -g react-native-rename is not required. Running npx react-native-rename "new_project_name" -b com.mycompany.newprojectname is possible. Further, you have to manually correct files such as google-services.json.
V
Vaibhav Mojidra

I will provide you step by step procedure.

First of all, we need to understand why we need to rename a package? Mostly for uniquely identifying App right? So React Native is a cross-platform to develop an app that runs on both iOS and Android. So What I recommended is to need the same identifier in both the platforms. In case Android Package Name is a unique identifier of your App and for iOS its bundle ID.

Steps:

Firstly close all editors/studio eg: xcode android studio vscode and then Install package "react-native-rename" in the terminal by running the command (Keep your project folder copy in another folder for backup if you don't feel this safe):

npm install react-native-rename -g

After sucessfully installing package open your project folder in the terminal and hit the below command where "Your app name Within double quotes" is app name and is replaced with package/bundle name/id:

react-native-rename "< Your app name Within double quotes >" -b

Example: react-native-rename "Aptitude Test App" -b com.vaibhavmojidra.aptitudetestapp

Note Make sure the package/bundle name/id is all in small case

This is not yet done yet now every file will change where the it had bundle/package names except one in ios project which we manually need to do for that open the xcode>open a project or file> choose file from projectfolder/ios/projectname.xcodeproj and click open Click on your projectname.xcodeproj that is first file in the project navigator then in field of Bundle identifier enter the package name/Bundle ID as below:

https://i.stack.imgur.com/JGadE.gif

After that run in the terminal

cd ios

Then run

pod install

Then run

cd ..

Now you are done for all the changes for ios just last step is to open Android Studio>Open an Existing Project> select projectfolder/android folder > Click on open Let it load and complete all the process and then in the Build Menu click "Clean Project" and the in File Menu > Close Project Close All editors and Now You can try the commands to run project on ios and android it will run with renamed packaged just while start server add extra flag --reset-cache:

npm start --reset-cache

Enjoy it will work now


this is just the best answer for this issue.
G
Geetha Tulasi Balam

You can use react-native-rename package which will take of all the necessary changes of package name under

app/mainapplication.java

AndroidManifest.xml

but make sure to manually change the package name of all files under the java/com folder. because when i created an splash screen activity the old package name is not updated.

https://www.npmjs.com/package/react-native-rename


T
Tenesse

Simply using the search and replace tool of my IDE did the trick.


A
Ansyori

very simple way :

cd /your/project/dir

run this command :

grep -rl "com.your.app" . | xargs sed -i 's/com.your.app/com.yournew.newapp/g'

rename your folder

android/app/src/main/java/com/your/app

change to

android/app/src/main/java/com/yournew/newapp

P
Pankaj

To change package I have searched and tried many methods but some are very hard and some are outdated. While searching I found a website that discuss a very simple method that are tested and personally i have also used this. Link : https://www.geoclassifieds.in/2021/02/change-package-name-react-native.html


link broken. Stackoverflow rule says it's better to describe here than to post links.
N
Nikhil bhatia

After renaming package name everywhere, from android studio. File -> Invalidate caches/Restart may fix this type of errors

this worked for me


S
S.Kishore

One simplest way I found when I tried to change the package name is using the "Search" option and replacing everything in VS Code.

In search use (com.yourprojectname) And replace it with (com.newProjectName)

The "react-native-rename" npm package does the same thing so you may try the above one if you don't want to install any packages.

But if you are using firebase the steps are a little different


M
Muhammad Rafeh Atique

This information can be helpful for you so listen properly...

After updating package name and changing files, don't forget to change in 
package.json and app.json file at the root directory of your react native project

Otherwise you will get this error below

Invariant Violation: "Your new package name" has not been registered

A
Anshul Singh

Go to file android/app/src/main/AndroidManifest.xml -

Update :

attr android:label of Element application as :

Old value - android:label="@string/app_name" New Value - android:label="(string you want to put)"

and

attr android:label of Element activity as :

Old value - android:label="@string/app_name" New Value - android:label="(string you want to put)"

Worked for me, hopefully it will help.


I honestly don't think this answer should've been downvoted as much as it has been. However, this answer does not address what was asked in the question - how to change the package name. Yet, it answers the question "how to change the title of of the app that appears in the launcher". Is it a relevant answer? Not really. Does it contain useful information? Yes. Therefore, I suggest you find a question which asks about the launcher title and post your solution there instead of here.