如何从本机应用程序生成.ipa文件

时间:2017-04-27 15:25:59

标签: ios react-native react-native-ios

我在simulater中成功运行了本机应用程序。但我想在iPad或iPhone上运行该应用程序。如何从我有的本机应用程序创建.ipa文件?

1 个答案:

答案 0 :(得分:3)

根据您的评论“我不想在应用程序商店中发布。我想先在我的本地设备上测试”

  1. 使用XCode
  2. 打开“ios”-Folder内部的Xcode-Project
  3. 按USB连接iPhone与Mac
  4. 在Dropdown中选择iPhone而不是“模拟器”,其中列出了所有模拟器。如果一切正常,它应该显示在顶部。
  5. 启动应用程序。
  6. current_user_can() enter image description here

    如果要测试Release-Mode而不是Debug-Build,则必须复制Scheme并选择“Run”下的Build Configuration“Release”:

    enter image description here

    根据您的原始问题“如何创建IPA”,您可以用以下内容替换步骤4):

    1. XCode - > Mainmenu - >产品 - >归档
    2. 这将创建一个包,然后您可以将IPA文件导出到您选择的文件夹中。

      enter image description here