Files
margelo--react-native-graph/example/ios/Podfile
T
Marc Rousavy c5346ddd7b Install Pods
2022-04-29 16:05:59 +02:00

15 lines
421 B
Ruby

require_relative '../node_modules/react-native/scripts/react_native_pods'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
platform :ios, '11.0'
target 'GraphExample' do
config = use_native_modules!
use_react_native!(
:path => config[:reactNativePath],
# to enable hermes on iOS, change `false` to `true` and then install pods
:hermes_enabled => false
)
end