1platform :ios, '13.0'
2
3# Disable expo-updates auto create manifest in podspec script_phase
4$expo_updates_create_manifest = false
5
6target '${TARGET_NAME}' do
7${EXPOKIT_DEPENDENCY}
8${PODFILE_UNVERSIONED_EXPO_MODULES_DEPENDENCIES}
9${PODFILE_UNVERSIONED_RN_DEPENDENCY}
10${PODFILE_VERSIONED_RN_DEPENDENCIES}
11
12  # Install vendored pods.
13  pod 'JKBigInteger', :podspec => '../../../ios/vendored/common/JKBigInteger.podspec.json'
14  require_relative '../../../ios/podfile_helpers.rb'
15  excluded_pods = ['stripe-react-native']
16  use_pods!('../../../ios/vendored/unversioned/**/*.podspec.json', nil, excluded_pods)
17
18  post_install do |installer|
19    installer.pods_project.main_group.tab_width = '2';
20    installer.pods_project.main_group.indent_width = '2';
21
22    # Workaround build error for Folly
23    __apply_Xcode_12_5_M1_post_install_workaround(installer) if installer.pods_project
24
25    installer.target_installation_results.pod_target_installation_results
26      .each do |pod_name, target_installation_result|
27${PODFILE_DETACHED_SERVICE_POSTINSTALL}
28${PODFILE_VERSIONED_POSTINSTALLS}
29${PODFILE_UNVERSIONED_POSTINSTALL}
30    end
31  end
32end
33