2019-11-27 18:47:21 +01:00
|
|
|
platform :ios, '10.0'
|
2019-05-02 22:33:03 +02:00
|
|
|
workspace 'BlueWallet'
|
2020-10-07 14:24:36 +02:00
|
|
|
require_relative '../node_modules/react-native/scripts/react_native_pods'
|
2020-06-18 17:49:36 +02:00
|
|
|
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
|
2020-10-07 14:24:36 +02:00
|
|
|
|
2020-06-18 17:49:36 +02:00
|
|
|
target 'BlueWallet' do
|
2020-10-07 14:24:36 +02:00
|
|
|
config = use_native_modules!
|
2020-06-18 17:49:36 +02:00
|
|
|
|
2020-10-07 14:24:36 +02:00
|
|
|
use_react_native!(:path => config["reactNativePath"])
|
2019-05-02 22:33:03 +02:00
|
|
|
|
2020-06-18 17:49:36 +02:00
|
|
|
# Enables Flipper.
|
|
|
|
#
|
|
|
|
# Note that if you have use_frameworks! enabled, Flipper will not work and
|
|
|
|
# you should disable these next few lines.
|
2020-10-07 14:24:36 +02:00
|
|
|
use_flipper!
|
2020-06-18 17:49:36 +02:00
|
|
|
post_install do |installer|
|
|
|
|
flipper_post_install(installer)
|
|
|
|
end
|
2020-10-30 21:20:53 +01:00
|
|
|
end
|
2020-11-02 14:11:28 +01:00
|
|
|
|
|
|
|
target 'MarketWidgetExtension' do
|
|
|
|
pod 'SwiftSocket', :git => 'https://github.com/swiftsocket/SwiftSocket.git', :branch => 'master'
|
|
|
|
end
|
|
|
|
|
|
|
|
target 'WalletInformationAndMarketWidgetExtension' do
|
|
|
|
pod 'SwiftSocket', :git => 'https://github.com/swiftsocket/SwiftSocket.git', :branch => 'master'
|
|
|
|
end
|
|
|
|
|
|
|
|
target 'WalletInformationWidgetExtension' do
|
|
|
|
pod 'SwiftSocket', :git => 'https://github.com/swiftsocket/SwiftSocket.git', :branch => 'master'
|
|
|
|
end
|