-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
61 lines (52 loc) · 1.35 KB
/
Podfile
File metadata and controls
61 lines (52 loc) · 1.35 KB
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
58
59
60
61
# Uncomment this line to define a global platform for your project
platform :ios, '9.0'
# Uncomment this line if you're using Swift
use_frameworks!
# ignore all warnings from all pods
inhibit_all_warnings!
def prod_pods
plugin 'cocoapods-keys', {
:project => "Listio",
:keys => [
"ListioAPISecret"
]}
pod 'ObjectMapper+Realm'
pod 'RealmSwift'
pod 'ObjectMapper', '~> 3.1'
pod 'JSONWebToken'
pod 'Alamofire', '4.4'
pod 'QRCodeReader.swift', :git=> "https://github.com/festrs/QRCodeReader.swift"
pod 'StringScore_Swift'
pod 'SVProgressHUD', '~> 2.1.2'
pod 'SwiftLint'
pod 'Floaty', '~> 4.0.0'
pod 'Kingfisher', '~> 4.0'
pod 'ALCameraViewController'
pod 'DatePickerCell'
pod 'Fabric'
pod 'Crashlytics'
pod 'SnapKit', '~> 4.0.0'
end
target 'Prod' do
prod_pods
end
target 'AppFramework' do
prod_pods
end
target 'ListioTests' do
prod_pods
end
swift_32 = ['QRCodeReader.swift']
post_install do |installer|
installer.pods_project.targets.each do |target|
swift_version = nil
if swift_32.include?(target.name)
swift_version = '3.2'
end
if swift_version
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = swift_version
end
end
end
end