Change App Name In React Native

前端 未结 14 875
滥情空心
滥情空心 2020-12-22 20:29

I\'m trying to figure out how to change a ReactNative app name. The installed APK on my device is simply \"App\", with the Android icon. How can I change this?

I\'ve

14条回答
  •  一个人的身影
    2020-12-22 20:59

    If you are asking only for Android here is solution

    Modify displayName in /app.json file

    Modify app_name in android/app/src/main/res/values/strings.xml

    then Run these commands one by one

    cd android
    gradlew clean
    cd ..
    react-native run-android
    

提交回复
热议问题