-
Notifications
You must be signed in to change notification settings - Fork 3
/
Podfile
47 lines (34 loc) · 1023 Bytes
/
Podfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Uncomment this line to define a global platform for your project
# platform :ios, '8.0'
# Uncomment this line if you're using Swift
# use_frameworks!
target 'Safe Exam Browser' do
platform :osx, '10.11'
use_frameworks!
pod 'CocoaLumberjack/Swift'
end
target 'Safe Exam Browser ETH' do
platform :osx, '10.11'
use_frameworks!
pod 'CocoaLumberjack/Swift'
end
target 'SEB' do
platform :ios, '11'
use_frameworks!
pod 'CocoaLumberjack/Swift'
pod 'InAppSettingsKit', :git => 'https://github.com/SafeExamBrowser/InAppSettingsKit.git'#, :branch => 'Crash_after_selection'
pod 'QRCodeReaderViewController', '~> 4.0.2'
pod 'JitsiMeetSDK', '~> 3.9.0'#, :git => 'https://github.com/jitsi/jitsi-meet-ios-sdk-releases.git'
end
target 'SEBVerificator' do
platform :osx, '10.11'
use_frameworks!
pod 'CocoaLumberjack/Swift'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end