-
Notifications
You must be signed in to change notification settings - Fork 4
/
Podfile
48 lines (43 loc) · 1.41 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
# Uncomment the next line to define a global platform for your project
platform :ios, '13.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['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
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 'ipad' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for ipad
# Networking
pod 'Alamofire'
# Storage
pod 'Realm'
pod 'RealmSwift'
# Animations
pod 'lottie-ios'
# Keybord manager
pod 'IQKeyboardManagerSwift'
# Reachability
pod 'ReachabilitySwift'
# Keycloack login
pod 'SingleSignOn', :git => 'https://github.com/Christopher-walsh22/InspectMusclesSSO.git'
# Extensions
pod 'Extended'
# Custom Modal
pod 'Modal'
# Datepicker
pod 'DatePicker'
# JSON handler
pod 'SwiftyJSON'
end