I would try "How to generate .ipa file for react-native?" But I'cant get .ipa file.
Any one cloud you explain how to get .ipa file .
I would try "How to generate .ipa file for react-native?" But I'cant get .ipa file.
Any one cloud you explain how to get .ipa file .
You can run these commands in the ios directory.
and iosExportOptions.plist can be something like
You can also checkout fastlane. https://fastlane.tools/
OR
You can fill in all the details such as DEVELOPMENT_TEAM etc in Xcode and Product -> Archive https://developer.apple.com/library/content/documentation/IDEs/Conceptual/AppDistributionGuide/TestingYouriOSApp/TestingYouriOSApp.html
How to build .ipa application for react-native-ios :
Get ".app" file :
Command :
react-native run-ios --configuration=release
".app" file path :
Build/Products/Release/"<Your_Filename>.app"
Convert
.app
to.ipa
:a. Create folder Payload.
b. paste
.app
file into Payload folder.c. compress the Payload folder.
d. change the name you want and put extension as
.ipa
.Delete localhost item from info.plist
App transport security settings -> Exception domains
Bundle ios
In Xcode
Products->Scheme->Edit scheme -> Change build configuration to
RELEASE
In
AppDelegate.m
Replace
with
Change device -> Generic iOS device
Product -> Clean
Product -> Build
.app
file can be found atCreate folder Payload.
Paste
.app
file into Payload folder.Compress the Payload folder.
Change the name you want and put extension as
.ipa