ystal
ystal

Reputation: 688

Changing "name" of launcher for ios/android

I created my react native project with react-native init runupdownnow. That is short for "Run Up Down Now".

I now am ready to release my app to the stores. I was able to change the icon on android and ios. But I am not able to change the "name" that appear below the launcher icon. Is the only option to react-native init "Run Up Down Now"?

Upvotes: 0

Views: 666

Answers (1)

Andrew Breen
Andrew Breen

Reputation: 695

This can be changed by following the specifics for each platform - for Android inside the ApplicationManifest.xml, and in the application settings for iOS.

This isn't something that is controlled from within React Native - the init for the name is pre-setting these values, however can be changed as if they were native apps.

Upvotes: 1

Related Questions