Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
July 26, 2022 10:03 am GMT

How to change React Native app name (iOS / Android)

In the example below I have a sample app that I named owler_franchise in the setup process.

Initial app name ios

Now I want to change that to Owler Franchise.

  • iOS

For iOS, go to ios folder and find the folder named after your project name.
In my case I called it owler_franchise. Inside that folder find the Info.plist file.

Find ios folder for Info.plist

Inside Info.plist file replace the value after <key>CFBundleDisplayName</key> to your app name.

For my example, I changed it to Owler Franchise.

iOS after update

That's it for iOS .

iOS ready

  • Android

For Android: Go to the following folder in order: android > app > src > main > res > values and open strings.xml file, replace the <string name="app_name"> tag's value.

Path to strings.xml file

before update android

Again, in my example, I changed it to Owler Franchise:

after updated android

That's it for Android too .

android done

Thanks for reading!

If you like this post, then follow me on twitter. You will be bombarded with coding memes .

My twitter page @nomanoff_tech


Original Link: https://dev.to/nomanoff_tech/how-to-change-react-native-app-name-ios-android-5fnf

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To