forked from home-assistant/iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
141 lines (111 loc) · 4.33 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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
use_frameworks!
inhibit_all_warnings!
project 'HomeAssistant', 'Debug' => :debug, 'Release' => :release, 'Beta' => :release
def support_modules
pod 'SwiftGen', '~> 6.5.0'
pod 'SwiftLint', '0.54.0' # also update ci.yml GHA
pod 'SwiftFormat/CLI', '0.53.1' # also update ci.yml GHA
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, '15.0'
support_modules
workspace 'abstract.workspace'
return self # rubocop:disable Lint/TopLevelReturnWithArgument
end
plugin 'cocoapods-acknowledgements'
pod 'Alamofire', '~> 5.8'
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 'Improv-iOS', '~> 0.0.6'
pod 'SFSafeSymbols', '~> 5.3'
pod 'RealmSwift'
pod 'GRDB.swift', git: 'https://github.com/groue/GRDB.swift.git', tag: 'v6.29.3'
pod 'UIColor_Hex_Swift'
pod 'Version'
pod 'XCGLogger'
# Keep Starscream reference even though HAKit already install it, because it defines our fork with the necessary fix
pod 'Starscream', git: 'https://github.com/bgoncal/starscream', branch: 'ha-URLSession-fix'
pod 'HAKit', git: 'https://github.com/home-assistant/HAKit.git', tag: '0.4.2'
pod 'HAKit/PromiseKit', git: 'https://github.com/home-assistant/HAKit.git', tag: '0.4.2'
pod 'HAKit/Mocks', git: 'https://github.com/home-assistant/HAKit.git', tag: '0.4.2'
def test_pods
pod 'OHHTTPStubs/Swift'
end
def shared_fwk_pods
pod 'Sodium', git: 'https://github.com/zacwest/swift-sodium.git', branch: 'xcode-14.0.1'
end
abstract_target 'iOS' do
platform :ios, '15.0'
pod 'MBProgressHUD', '~> 1.2.0'
pod 'ReachabilitySwift'
# fixes newer cocoapods search path issues for Clibsodium build failures
shared_fwk_pods
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',
commit: 'fde095843bb8c08e8818097c51ed140373180790'
pod 'CPDAcknowledgements', git: 'https://github.com/CocoaPods/CPDAcknowledgements', branch: 'master'
pod 'Eureka', git: 'https://github.com/xmartlabs/Eureka', branch: 'master'
pod 'FirebaseMessaging'
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-Matter'
target 'Extensions-NotificationContent'
target 'Extensions-NotificationService'
target 'Extensions-PushProvider'
target 'Extensions-Share'
target 'Extensions-Widgets'
end
abstract_target 'watchOS' do
platform :watchos, '8.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'] = '8.0'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
config.build_settings['SWIFT_INSTALL_OBJC_HEADER'] = 'NO' unless target.name.include? 'Firebase'
# disabled arch to stay under the 75 MB limit imposed by apple
config.build_settings['EXCLUDED_ARCHS[sdk=watchos*]'] = 'arm64'
next unless config.name == 'Release'
# cocoapods defaults to not stripping the frameworks it creates
config.build_settings['STRIP_INSTALLED_PRODUCT'] = 'YES'
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*]'] = '-'
config.build_settings['CODE_SIGNING_ALLOWED[sdk=iphoneos*]'] = 'NO'
end
end
# rubocop:enable Style/Next
end
end