2022-02-12 05:27:29 +08:00
|
|
|
require_relative '../node_modules/react-native/scripts/react_native_pods'
|
|
|
|
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
|
|
|
|
|
2022-02-16 10:45:44 +08:00
|
|
|
platform :ios, '14.7'
|
2022-02-12 05:27:29 +08:00
|
|
|
|
2022-02-16 11:16:04 +08:00
|
|
|
target 'BigBlueButton Broadcast' do
|
2022-07-08 09:26:43 +08:00
|
|
|
pod 'bigbluebutton-mobile-sdk-common', :path => '../node_modules/bigbluebutton-mobile-tablet-sdk/ios-common'
|
|
|
|
pod 'bigbluebutton-mobile-sdk-broadcast-upload-extension', :path => '../node_modules/bigbluebutton-mobile-tablet-sdk/ios-broadcast-upload-extension'
|
2022-02-16 11:16:04 +08:00
|
|
|
end
|
|
|
|
|
2022-02-12 05:27:29 +08:00
|
|
|
target 'BigBlueButton' do
|
2022-07-08 09:26:43 +08:00
|
|
|
pod 'bigbluebutton-mobile-sdk-common', :path => '../node_modules/bigbluebutton-mobile-tablet-sdk/ios-common'
|
2022-02-12 05:27:29 +08:00
|
|
|
config = use_native_modules!
|
|
|
|
|
|
|
|
use_react_native!(
|
|
|
|
:path => config[:reactNativePath],
|
|
|
|
# to enable hermes on iOS, change `false` to `true` and then install pods
|
|
|
|
:hermes_enabled => false
|
|
|
|
)
|
|
|
|
|
2022-02-17 01:09:37 +08:00
|
|
|
|
2022-02-25 03:02:12 +08:00
|
|
|
|
2022-03-02 03:28:24 +08:00
|
|
|
|
2022-02-12 05:27:29 +08:00
|
|
|
# Enables Flipper.
|
|
|
|
#
|
|
|
|
# Note that if you have use_frameworks! enabled, Flipper will not work and
|
|
|
|
# you should disable the next line.
|
2022-02-16 07:55:10 +08:00
|
|
|
#use_flipper!()
|
2022-02-12 05:27:29 +08:00
|
|
|
|
|
|
|
post_install do |installer|
|
|
|
|
react_native_post_install(installer)
|
|
|
|
__apply_Xcode_12_5_M1_post_install_workaround(installer)
|
|
|
|
end
|
|
|
|
end
|