iOS
React Native
iOS setup
Update Podfile in your_project_dir/ios
folder
your_project_dir/ios
folderchange minimum iOS deployment target to
11.0
or lateradd dynamic frameworks support
add custom podspec repo url
add workaround for Flipper framework usage (only if you plan to use Flipper framework). We recommend not to use Flipper and remove mentions of it from Podfile and AppDelegate.m files
Apply changes in Podfile
Run pod install
command in your_project_dir/ios
folder
Last updated