aboutsummaryrefslogtreecommitdiffstats
path: root/ios/Podfile
diff options
context:
space:
mode:
authorMaksymilian Jopek <maks@jopek.eu>2021-12-09 23:15:33 +0100
committerMaksymilian Jopek <maks@jopek.eu>2021-12-09 23:15:33 +0100
commit67b6f338cfe4da739d39dc6764d11efa00105d81 (patch)
tree441ff30a8fb783e400ea7c9e600c889e12392eca /ios/Podfile
downloadremarques-67b6f338cfe4da739d39dc6764d11efa00105d81.tar.gz
remarques-67b6f338cfe4da739d39dc6764d11efa00105d81.tar.zst
remarques-67b6f338cfe4da739d39dc6764d11efa00105d81.zip
Created a new Expo app
Diffstat (limited to 'ios/Podfile')
-rw-r--r--ios/Podfile41
1 files changed, 41 insertions, 0 deletions
diff --git a/ios/Podfile b/ios/Podfile
new file mode 100644
index 0000000..01d8287
--- /dev/null
+++ b/ios/Podfile
@@ -0,0 +1,41 @@
+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")
+
+platform :ios, '12.0'
+
+require 'json'
+podfile_properties = JSON.parse(File.read('./Podfile.properties.json')) rescue {}
+
+target '10lesson' do
+ use_expo_modules!
+ config = use_native_modules!
+
+ use_react_native!(
+ :path => config[:reactNativePath],
+ :hermes_enabled => podfile_properties['expo.jsEngine'] == 'hermes'
+ )
+
+ # Uncomment to opt-in to using Flipper
+ #
+ # if !ENV['CI']
+ # use_flipper!('Flipper' => '0.75.1', 'Flipper-Folly' => '2.5.3', 'Flipper-RSocket' => '1.3.1')
+ # end
+
+ post_install do |installer|
+ react_native_post_install(installer)
+
+ # 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
+ end
+
+end