Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions FabricExample/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ require_relative '../../scripts/ios/rns_set_swift_compilation_flags'
platform :ios, min_ios_version_supported
prepare_react_native_project!

# Disable precompiled binaries for RN core
ENV['RCT_USE_PREBUILT_RNCORE'] = '0'
# Using prebuilt React Native iOS binaries for faster builds
# disable if you need to dive in and tweak into React Native native code
ENV['RCT_USE_PREBUILT_RNCORE'] = '1'
ENV['RCT_USE_RN_DEP'] = '1'

linkage = ENV['USE_FRAMEWORKS']
if linkage != nil
Expand Down
Loading