React Native <= 0.63
Setting up this library is a little bit trickier for IOS rathen than Android.
1. Add a Bridging Header#
Since this library uses Swift, you'll need to generate a Bridging Header from Xcode.
2. Modify AppDelegate.m#
Modify your app delegate like the following:
3. Update Podfile#
3.1. Update IOS Target#
Modify the IOS target like the following:
3.2. Disable Input and Output Paths#
Add disable input output paths like the following:
3.3. Disable Module Headers in DoubleConversion, glog and Folly#
Disable module headers for DoubleConversion, Glog and Folly like the following:
3.4. Enable Modular Headers#
Add support for module headers like the following:
Install Pods#
Install pods by running the following commands:
With those steps fully completed, we should be able to build the IOS app accordangly.