-
Notifications
You must be signed in to change notification settings - Fork 5
/
Podfile
38 lines (24 loc) · 864 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
# Uncomment the next line to define a global platform for your project
abstract_target 'AnodaTurnTimerAbstract' do
use_frameworks!
inhibit_all_warnings!
target 'AnodaTurnTimer' do
platform :ios, '10.0'
# UI Core
pod 'SnapKit', '~> 4.0'
# UI Controls
pod 'SwiftySound'
pod 'R.swift'
# Analytics / Testing / Reporting
pod 'Fabric'
pod 'Crashlytics'
pod 'UIImagePDF', :git=> '[email protected]:anodamobi/UIImage-PDF.git', :branch => '0.9-beta1', :commit => '7d9dfbf'
pod 'ReSwift', '~> 4.0.1'
pod 'SwiftyUserDefaults'
end
target 'AnodaTurnTimerWatch Extension' do
platform :watchos, '4.0'
pod 'ReSwift', '~> 4.0.1'
pod 'SwiftyUserDefaults'
end
end