上传图片至 http://makeappicon.com/ 邮箱下载
下载文件 ios/AppIcon.appiconset 文件夹整体复制
覆盖工程ios/工程名/Images.xcassets/AppIcon.appiconset
重启工程
工程修改名称
sublime打开 ios/工程名/Info.plist
<key>CFBundleDevelopmentRegion</key>
<string>zh_CN</string>
<key>CFBundleDisplayName</key>
<string>想要显示的名称</string>
修改启动页
sublime打开 ios/工程名/Base.lproj/LaunchScreen.xib
文本:直接搜索修改
图片:替换
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
<view contentMode="scaleAspectFill" id="iN0-l3-epB"> <rect key="frame" x="0.0" y="0.0" width="630" height="753"/> <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> <subviews> <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" image="Splash.png" translatesAutoresizingMaskIntoConstraints="NO" id="5LC-cn-d0c"> <rect key="frame" x="0.0" y="0.0" width="375" height="667"/> <constraints> <constraint firstAttribute="width" secondItem="5LC-cn-d0c" secondAttribute="height" multiplier="375:667" id="wcc-Hi-qqW"/> </constraints> </imageView> </subviews> <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/> <constraints> <constraint firstItem="5LC-cn-d0c" firstAttribute="centerX" secondItem="iN0-l3-epB" secondAttribute="centerX" id="E9 大专栏 React-Native图标、启动页、打包l-Ov-rY9"/> <constraint firstItem="5LC-cn-d0c" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" id="QjV-Kf-fsL"/> <constraint firstItem="5LC-cn-d0c" firstAttribute="top" secondItem="iN0-l3-epB" secondAttribute="top" id="XTr-0R-xje"/> <constraint firstItem="5LC-cn-d0c" firstAttribute="centerY" secondItem="iN0-l3-epB" secondAttribute="centerY" id="zu0-Ez-CoZ"/> </constraints> <nil key="simulatedStatusBarMetrics"/> <nil key="simulatedTopBarMetrics"/> <nil key="simulatedBottomBarMetrics"/> <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/> <point key="canvasLocation" x="675" y="497.5"/> </view> <resources> <image name="Splash.png" width="375" height="667"/> </resources> |
更改两处图片名称
把图标放在ios目录下
进入 xconde-General-App Icons and Lanuch Images 小箭头
图片拖到第二栏空白处 重启项目
打包
IOS
react-native 发布流程
准备工作
1.苹果开发者帐号一枚
https://developer.apple.com/
2.蒲公英应用测试号一枚
https://www.pgyer.com/
开发者中心
1.登陆
点击 Certificates,IDs & Profiles
2.Devices -> ALL->添加设备UDID
3.Identifiers -> App IDs -> 添加APP ID也就是bounld ID
4.最下面 Provisioning Profiles -> Distribution->添加描述文件->点击添加->Ad Hoc->继续->选中之前添加的App ID->继续->选中证书->继续->选择设备->继续->添加描述文件名称-进入到下载描述文件页,点击下载
导入xcode后调整上栏运行环境为 Generic IOS Device
选择product下的Archive
Android
没有亲自测试但找了两个网站
React—native+Android环境搭建和开发配置(Mac)
http://blog.csdn.net/pcaxb/article/details/52046438
React Native安卓项目打包APK
http://www.jianshu.com/p/32a99c273be1
原文地址:https://www.cnblogs.com/liuzhongrong/p/12262818.html