2020-05-08 16:37:49 +00:00
|
|
|
platform :ios, '11.0'
|
2020-07-20 16:35:17 +00:00
|
|
|
require_relative '../node_modules/react-native/scripts/react_native_pods'
|
2019-08-07 13:51:34 +00:00
|
|
|
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
|
2019-06-21 16:39:20 +00:00
|
|
|
require_relative '../node_modules/react-native-unimodules/cocoapods.rb'
|
|
|
|
|
2020-07-20 16:35:17 +00:00
|
|
|
def all_pods
|
|
|
|
config = use_native_modules!
|
|
|
|
use_unimodules!
|
|
|
|
use_react_native!(:path => config["reactNativePath"])
|
|
|
|
use_flipper!
|
2020-05-08 16:37:49 +00:00
|
|
|
end
|
|
|
|
|
2018-07-26 14:23:06 +00:00
|
|
|
target 'RocketChatRN' do
|
2020-07-20 16:35:17 +00:00
|
|
|
all_pods
|
2018-07-26 14:23:06 +00:00
|
|
|
end
|
|
|
|
|
2019-07-18 17:44:02 +00:00
|
|
|
target 'ShareRocketChatRN' do
|
2020-07-20 16:35:17 +00:00
|
|
|
all_pods
|
2019-07-18 17:44:02 +00:00
|
|
|
end
|
|
|
|
|
2020-08-19 17:14:22 +00:00
|
|
|
# used to get user credentials
|
|
|
|
target 'NotificationService' do
|
|
|
|
pod 'MMKVAppExtension'
|
|
|
|
end
|
|
|
|
|
2018-07-26 14:23:06 +00:00
|
|
|
post_install do |installer|
|
|
|
|
installer.pods_project.targets.each do |target|
|
2019-08-07 13:51:34 +00:00
|
|
|
target.build_configurations.each do |config|
|
|
|
|
config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = 'NO'
|
2018-07-26 14:23:06 +00:00
|
|
|
end
|
|
|
|
end
|
2020-05-08 16:37:49 +00:00
|
|
|
flipper_post_install(installer)
|
2020-07-20 16:35:17 +00:00
|
|
|
end
|