Files
drip/ios/Podfile
T
2024-02-08 16:22:20 +01:00

24 lines
572 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, '12.0'
target 'drip' 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
)
target 'dripTests' do
inherit! :complete
# Pods for testing
end
post_install do |installer|
react_native_post_install(installer)
end
end