tooot/ios/Podfile

27 lines
742 B
Plaintext
Raw Normal View History

2021-01-28 00:41:53 +01:00
require_relative '../node_modules/react-native/scripts/react_native_pods'
require_relative '../node_modules/react-native-unimodules/cocoapods.rb'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
platform :ios, '11.0'
target 'tooot' do
use_unimodules!
config = use_native_modules!
2021-03-16 00:36:32 +01:00
use_react_native!(
:path => config[:reactNativePath],
# to enable hermes on iOS, change `false` to `true` and then install pods
2021-10-04 21:09:26 +02:00
:hermes_enabled => false
2021-03-16 00:36:32 +01:00
)
2021-01-28 00:41:53 +01:00
2021-03-16 00:36:32 +01:00
# Enables Flipper.
2021-01-28 00:41:53 +01:00
#
2021-03-16 00:36:32 +01:00
# Note that if you have use_frameworks! enabled, Flipper will not work and
# you should disable the next line.
# use_flipper!()
2021-01-31 03:09:35 +01:00
2021-03-16 00:36:32 +01:00
post_install do |installer|
react_native_post_install(installer)
2021-01-31 03:09:35 +01:00
end
end