-
-
Notifications
You must be signed in to change notification settings - Fork 643
Expand file tree
/
Copy pathPodfile
More file actions
61 lines (52 loc) · 1.8 KB
/
Podfile
File metadata and controls
61 lines (52 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Resolve react_native_pods.rb with node to allow for hoisting
require Pod::Executable.execute_command('node', ['-p',
'require.resolve(
"react-native/scripts/react_native_pods.rb",
{paths: [process.argv[1]]},
)', __dir__]).strip
require_relative '../../scripts/ios/rns_update_info_plist'
require_relative '../../scripts/ios/rns_set_swift_compilation_flags'
platform :ios, min_ios_version_supported
prepare_react_native_project!
# Use prebuilt binaries in CI, source in local development
ENV['RCT_USE_PREBUILT_RNCORE'] = ENV['RCT_USE_RN_DEP'] = ENV['CI'] ? '1' : '0'
linkage = ENV['USE_FRAMEWORKS']
if linkage != nil
Pod::UI.puts "Configuring Pod with #{linkage}ally linked Frameworks".green
use_frameworks! :linkage => linkage.to_sym
end
target 'FabricExample' do
config = use_native_modules!
use_react_native!(
:path => config[:reactNativePath],
# An absolute path to your application root.
:app_path => "#{Pod::Config.instance.installation_root}/.."
)
post_install do |installer|
react_native_post_install(
installer,
config[:reactNativePath],
:mac_catalyst_enabled => false,
# :ccache_enabled => true
)
project_path = File.join(__dir__, 'FabricExample.xcodeproj')
info_plist_path = File.join(__dir__, 'FabricExample', 'Info.plist')
if ENV['RNS_USE_SCENE_DELEGATE'] == '1'
rns_add_scene_manifest_to_info_plist(
info_plist_path: info_plist_path
)
rns_set_swift_active_compilation_flag(
project_path: project_path,
flag: 'RNS_USE_SCENE_DELEGATE'
)
else
rns_remove_scene_manifest_from_info_plist(
info_plist_path: info_plist_path
)
rns_unset_swift_active_compilation_flag(
project_path: project_path,
flag: 'RNS_USE_SCENE_DELEGATE'
)
end
end
end