forked from home-assistant/iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
59 lines (48 loc) · 1.43 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
58
59
# 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!
plugin 'cocoapods-acknowledgements'
target 'HomeAssistant' do
pod 'Alamofire'
pod 'AlamofireImage'
pod 'AlamofireNetworkActivityIndicator'
pod 'AlamofireObjectMapper'
pod 'CPDAcknowledgements'
pod 'Crashlytics'
pod 'DeviceKit'
pod 'Eureka', :git => 'https://github.com/xmartlabs/Eureka.git', :branch => 'master'
pod 'Fabric'
pod 'FontAwesomeKit/MaterialDesignIcons', :git => 'https://github.com/robbiet480/FontAwesomeKit.git', :branch => 'Material-Design-Icons'
pod 'KeychainAccess'
pod 'MBProgressHUD'
pod 'ObjectMapper'
pod 'PermissionScope', :git => 'https://github.com/robbiet480/PermissionScope.git', :branch => 'swift3-ios10-usernotifications'
pod 'PromiseKit'
pod 'Realm'
pod 'RealmSwift'
pod 'SwiftGen'
pod 'SwiftLint'
pod 'SwiftLocation'
end
target 'HomeAssistantTests' do
end
target 'HomeAssistantUITests' do
end
target 'APNSAttachmentService' do
pod 'KeychainAccess'
end
target 'MapNotificationContentExtension' do
pod 'MBProgressHUD'
end
target 'NotificationContentExtension' do
pod 'KeychainAccess'
pod 'MBProgressHUD'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.0'
end
end
end