33 lines
825 B
Ruby
33 lines
825 B
Ruby
platform :ios, '11.0'
|
|
require_relative '../node_modules/react-native/scripts/react_native_pods'
|
|
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
|
|
require_relative '../node_modules/react-native-unimodules/cocoapods.rb'
|
|
|
|
def all_pods
|
|
config = use_native_modules!
|
|
use_unimodules!
|
|
use_react_native!(:path => config["reactNativePath"])
|
|
use_flipper!
|
|
end
|
|
|
|
target 'RocketChatRN' do
|
|
all_pods
|
|
end
|
|
|
|
target 'ShareRocketChatRN' do
|
|
all_pods
|
|
end
|
|
|
|
# used to get user credentials
|
|
target 'NotificationService' do
|
|
pod 'MMKVAppExtension'
|
|
end
|
|
|
|
post_install do |installer|
|
|
installer.pods_project.targets.each do |target|
|
|
target.build_configurations.each do |config|
|
|
config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = 'NO'
|
|
end
|
|
end
|
|
flipper_post_install(installer)
|
|
end |