forked from hsjoberg/blixt-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
39 lines (32 loc) · 1.19 KB
/
Podfile
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
require_relative '../node_modules/react-native-macos/scripts/react_native_pods'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
pod 'SwiftProtobuf', '~> 1.22.0'
prepare_react_native_project!
project 'BlixtWallet',
# 'DebugTestnet' => :debug,
# 'ReleaseTestnet' => :release,
# 'DebugFakelnd' => :debug,
# 'ReleaseFakelnd' => :release,
'Debug Regtest' => :debug,
'Release Regtest' => :release,
'Debug' => :debug,
'Release' => :release
target 'BlixtWallet' do
platform :macos, '10.15'
use_native_modules!
# Flags change depending on the env values.
flags = get_default_flags()
use_react_native!(
:path => '../node_modules/react-native-macos',
:hermes_enabled => false,
:fabric_enabled => ENV['RCT_NEW_ARCH_ENABLED'] == '1',
# Flipper is not compatible w/ macOS
:flipper_configuration => FlipperConfiguration.disabled,
# An absolute path to your application root.
:app_path => "#{Pod::Config.instance.installation_root}/.."
)
post_install do |installer|
react_native_post_install(installer)
__apply_Xcode_12_5_M1_post_install_workaround(installer)
end
end