react-native开发指南

发表于:2021-06-07 01:18
技术,react-native
热度:132
喜欢:0

React Native 中设置 APP 名称、图标和启动页

https://www.jianshu.com/p/727c6057fc0a

设置项目名

android/app/src/main/res/values/strings.xml

git 复制代码
<resources>
-    <string name="app_name">test</string>
+    <string name="app_name">测试程序</string>   
</resources>

图片转安卓icon

https://icon.wuruihong.com/

打包

https://www.react-native.cn/docs/signed-apk-android

bash 复制代码
cd android 
./gradlew assembleRelease