React Native iOS - .ipa文件的位置

时间:2017-05-30 13:18:14

标签: ios react-native

在哪里可以找到生成的.ipa文件?

我做了什么:

  1. 运行命令react-native bundle --dev false --entry-file index.ios.js --bundle-output ios/main.jsbundle --platform ios
  2. 然后是react-native run-ios --configuration Release
  3. 现在我在哪里可以找到.ipa文件并安装在物理iPhone设备上?

1 个答案:

答案 0 :(得分:0)

你实际上必须使用xcode为你构建ipa。这可以使用命令行xcodebuild工具在ios项目文件夹中使用以下命令来完成 首先,创建app archive:

  

xcodebuild -workspace YourWorkspaceFile -scheme YourSchemeAsInXcode -configuration Release -archivePath SomewhereEasyForYouToFind / someFilename.xcarchive archive < / p>

接下来,构建.ipa:

  

xcodebuild -archivePath SomewhereEasyForYouToFind / someFilename.xcarchive -exportOptionsPlist YourExport.plist -exportPath SomewhereEasyForYouToFind / someFilename

有关export.plist文件的格式,请参阅xcodebuild工具的帮助。