tooot/ios/Podfile

41 lines
1.4 KiB
Plaintext
Raw Normal View History

2021-10-24 00:43:00 +02:00
require File.join(File.dirname(`node --print "require.resolve('expo/package.json')"`), "scripts/autolinking")
require File.join(File.dirname(`node --print "require.resolve('react-native/package.json')"`), "scripts/react_native_pods")
require File.join(File.dirname(`node --print "require.resolve('@react-native-community/cli-platform-ios/package.json')"`), "native_modules")
2021-01-28 00:41:53 +01:00
2021-10-24 00:43:00 +02:00
platform :ios, '12.0'
require 'json'
podfile_properties = JSON.parse(File.read('./Podfile.properties.json')) rescue {}
2021-01-28 00:41:53 +01:00
target 'tooot' do
2021-10-24 00:43:00 +02:00
use_expo_modules!
2021-01-28 00:41:53 +01:00
config = use_native_modules!
2021-03-16 00:36:32 +01:00
use_react_native!(
:path => config[:reactNativePath],
2021-10-24 00:43:00 +02:00
:hermes_enabled => podfile_properties['expo.jsEngine'] == 'hermes'
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-10-24 00:43:00 +02:00
# Workaround `Cycle inside FBReactNativeSpec` error for react-native 0.64
# Reference: https://github.com/software-mansion/react-native-screens/issues/842#issuecomment-812543933
installer.pods_project.targets.each do |target|
if (target.name&.eql?('FBReactNativeSpec'))
target.build_phases.each do |build_phase|
if (build_phase.respond_to?(:name) && build_phase.name.eql?('[CP-User] Generate Specs'))
target.build_phases.move(build_phase, 0)
end
end
end
end
2021-01-31 03:09:35 +01:00
end
end