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
iOS
Open iOS project with Xcode using the following simple command from your root folder.
xed ./ios
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
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