-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPodfile
57 lines (54 loc) · 1.83 KB
/
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
48
49
50
51
52
53
54
55
56
57
# Uncomment the next line to define a global platform for your project
platform :ios, '11.0'
# This is used to allow the CI build to work. The pod(s) are
# signed with the credentials / profile provided and xcodebuild
# is not happy with this. If you Pods are check in to SCM, and not
# updated by the CI build process then you may not need this.
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = "-"
config.build_settings['EXPANDED_CODE_SIGN_IDENTITY_NAME'] = "-"
config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
end
end
end
target 'Myra' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
pod 'DatePicker', '1.0.1'
pod 'Realm'
pod 'RealmSwift'
pod 'IQKeyboardManagerSwift', '6.1.1'
pod 'ReachabilitySwift', '4.2.1'
pod 'Alamofire'
pod 'SwiftyJSON', '4.1.0'
pod 'Fabric', '1.7.7'
pod 'Crashlytics', '3.10.2'
pod 'lottie-ios', '2.5.0'
pod 'SingleSignOn', :git => 'https://github.com/bcgov/mobile-authentication-ios.git', :tag => 'v1.0.6'
pod 'ShowTime', '2.4.0'
pod 'Extended'
pod 'Designer'
pod 'SwiftLint'
end
target 'MyraTests' do
use_frameworks!
pod 'DatePicker', '1.0.1'
pod 'Realm'
pod 'RealmSwift'
pod 'IQKeyboardManagerSwift', '6.1.1'
pod 'ReachabilitySwift', '4.2.1'
pod 'Alamofire'
pod 'SwiftyJSON', '4.1.0'
pod 'Fabric', '1.7.7'
pod 'Crashlytics', '3.10.2'
pod 'lottie-ios', '2.5.0'
pod 'SingleSignOn', :git => 'https://github.com/bcgov/mobile-authentication-ios.git', :tag => 'v1.0.6'
pod 'ShowTime', '2.4.0'
pod 'Extended'
pod 'Designer'
pod 'SwiftLint'
pod 'Fakery'
end