forked from home-assistant/iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
127 lines (101 loc) · 3.67 KB
/
Podfile
File metadata and controls
127 lines (101 loc) · 3.67 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
use_frameworks!
inhibit_all_warnings!
project 'HomeAssistant', 'Debug' => :debug, 'Release' => :release, 'Beta' => :release
def support_modules
pod 'SwiftGen', '~> 6.5.0'
pod 'SwiftLint'
pod 'SwiftFormat/CLI'
end
if ENV['ONLY_SUPPORT_MODULES']
# some of our CI scripts only need e.g. SwiftLint
# this allows us to skip a lot of installation when unnecessary
platform :ios, '12.0'
support_modules
workspace 'abstract.workspace'
return self # rubocop:disable Lint/TopLevelReturnWithArgument
end
plugin 'cocoapods-acknowledgements'
system('./Tools/BuildMaterialDesignIconsFont.sh')
# alamofire can be upgraded when Apple stops breaking iOS 12 builds when Concurrency is referenced
pod 'Alamofire', '5.4.4'
pod 'Communicator', git: 'https://github.com/zacwest/Communicator.git', branch: 'observation-memory-direct'
pod 'KeychainAccess'
pod 'ObjectMapper', git: 'https://github.com/tristanhimmelman/ObjectMapper.git', branch: 'master'
pod 'PromiseKit'
pod 'RealmSwift', git: 'https://github.com/zacwest/realm-swift', branch: 'noasync-v10.20.1'
pod 'UIColor_Hex_Swift'
pod 'Version'
pod 'XCGLogger'
pod 'Starscream', git: 'https://github.com/zacwest/starscream', branch: 'ha-swift-api'
pod 'HAKit', git: 'https://github.com/home-assistant/HAKit.git', branch: 'main'
pod 'HAKit/PromiseKit', git: 'https://github.com/home-assistant/HAKit.git', branch: 'main'
pod 'HAKit/Mocks', git: 'https://github.com/home-assistant/HAKit.git', branch: 'main'
def test_pods
pod 'OHHTTPStubs/Swift'
end
def shared_fwk_pods
pod 'Sodium', git: 'https://github.com/jedisct1/swift-sodium.git', branch: 'master'
end
abstract_target 'iOS' do
platform :ios, '12.0'
pod 'MBProgressHUD', '~> 1.2.0'
pod 'ReachabilitySwift'
target 'Shared-iOS' do
shared_fwk_pods
pod 'ZIPFoundation', '~> 0.9'
target 'Tests-Shared' do
inherit! :complete
test_pods
end
end
target 'App' do
pod 'CallbackURLKit'
pod 'ColorPickerRow', git: 'https://github.com/EurekaCommunity/ColorPickerRow', branch: 'master'
pod 'CPDAcknowledgements', git: 'https://github.com/CocoaPods/CPDAcknowledgements', branch: 'master'
pod 'Eureka', git: 'https://github.com/xmartlabs/Eureka', branch: 'master'
pod 'Firebase'
pod 'Firebase/Messaging'
pod 'lottie-ios'
pod 'SwiftMessages'
pod 'ViewRow', git: 'https://github.com/EurekaCommunity/ViewRow', branch: 'master'
support_modules
target 'Tests-App' do
inherit! :search_paths
test_pods
end
end
target 'Extensions-Intents'
target 'Extensions-NotificationContent'
target 'Extensions-NotificationService'
target 'Extensions-PushProvider'
target 'Extensions-Share'
target 'Extensions-Today'
target 'Extensions-Widgets'
end
abstract_target 'watchOS' do
platform :watchos, '5.0'
target 'Shared-watchOS' do
shared_fwk_pods
end
target 'WatchExtension-Watch' do
pod 'EMTLoadingIndicator', git: 'https://github.com/hirokimu/EMTLoadingIndicator', branch: 'master'
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['WATCHOS_DEPLOYMENT_TARGET'] = '5.0'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
config.build_settings['SWIFT_INSTALL_OBJC_HEADER'] = 'NO'
end
# Fix bundle targets' 'Signing Certificate' to 'Sign to Run Locally'
# (catalyst fix)
# rubocop:disable Style/Next
if target.respond_to?(:product_type) && (target.product_type == 'com.apple.product-type.bundle')
target.build_configurations.each do |config|
config.build_settings['CODE_SIGN_IDENTITY[sdk=macosx*]'] = '-'
end
end
# rubocop:enable Style/Next
end
end