본문 바로가기

React-native

[ React Native ] 앱 이름 바꾸기

앱 이름 변경은 간단합니다.

 

Android

1. app.json 에서 displayname을 수정

2. string.xml 에서 app_name을 수정

- path : android/app/src/main/res/values/string.xml

<resources>
    <string name="app_name">app name</string>
</resources>

 

iOS

xCode에서 General탭 > Identity > Display Name을 바꿔주면 끝!
안되면

Info.plist 에서 Bundle display name을 수정 후 재 빌드하면 적용 됩니다.