39 lines
1.0 KiB
Ruby
39 lines
1.0 KiB
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
|
|
|
|
abstract_target 'defaults' do
|
|
# force use our own JitsiMeetSDK
|
|
pod 'JitsiMeetSDK', :git => 'https://github.com/RocketChat/jitsi-meet-ios-sdk-releases.git'
|
|
|
|
all_pods
|
|
|
|
target 'RocketChatRN' # Experimental app
|
|
target 'Rocket.Chat' # Official app
|
|
end
|
|
|
|
target 'ShareRocketChatRN' do
|
|
all_pods
|
|
end
|
|
|
|
# used to get user credentials
|
|
target 'NotificationService' do
|
|
all_pods
|
|
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 |