How to build .ipa for React Native?

后端 未结 4 2166
我在风中等你
我在风中等你 2020-12-07 13:38

I come to React Native development without previous experience in iOS development. I want to build release. .ipa file - ideally from the command line but the official docume

相关标签:
4条回答
  • 2020-12-07 14:15

    First, you need to create a bundle this way :

    react-native bundle --dev false --entry-file index.ios.js --bundle-output ios/main.jsbundle --platform ios
    

    Then, you have to comment this line in AppDelegate.m :

    jsCodeLocation = [NSURL URLWithString:@"http://localhost:8081/index.ios.bundle?platform=ios&dev=true"];
    

    and uncomment this one :

    jsCodeLocation = [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
    

    Then you have to go for Product -> Archive in Xcode and follow the steps based on your desired release

    0 讨论(0)
  • 2020-12-07 14:24

    You have to set Scheme to Release.

    From docs you have two ways.

    To do this, go to Product → Scheme → Edit Scheme (cmd + <), make sure you're in the Run tab from the side, and set the Build Configuration dropdown to Release.

    or

    You can also use the React Native CLI to perform this operation using the option --configuration with the value Release (e.g. react-native run-ios --configuration Release).

    Then you can generate your archive as usual.

    https://facebook.github.io/react-native/docs/running-on-device.html#building-your-app-for-production

    0 讨论(0)
  • 2020-12-07 14:24

    i cannot comment on the above answer, it is correct but you need to start with the following command in order for it to work:

    react-native bundle --dev false --entry-file index.ios.js --bundle-output ios/main.jsbundle --platform ios
    

    the difference is 'ios' instead of 'iOS'

    if not it will give the following error:

    ProjectPath/node_modules/promise/lib/done.js:10
      throw err;
      ^
    
    0 讨论(0)
  • 2020-12-07 14:29

    iOS

    1. Open iOS project with Xcode using the following simple command from your root folder.

      xed ./ios
      
    2. Now paste the following command in terminal

      react-native bundle --entry-file index.js --platform ios --dev false --bundle-output ios/main.jsbundle --assets-dest ios
      

    3. Edit the scheme from Xcode like this:

      Product -> Scheme -> Edit Scheme

      Edit scheme to release

    Now you have a stand-alone Xcode project and ready to build/release like native Xcode project.

    Ans From: https://medium.com/better-programming/create-ipa-and-apk-from-react-native-72fe53c6a8db

    0 讨论(0)
提交回复
热议问题