forked from home-assistant/iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
131 lines (105 loc) · 3.81 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
use_frameworks!
inhibit_all_warnings!
project 'HomeAssistant', 'Debug' => :debug, 'Release' => :release, 'Beta' => :release
def support_modules
pod 'SwiftGen', '~> 6.4.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')
pod 'Alamofire', '~> 5.0'
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', podspec: 'Configuration/Podspecs/Realm.podspec.json'
pod 'Sentry'
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
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'
pod 'Firebase', podspec: 'Configuration/Podspecs/Firebase.podspec.json'
pod 'Lokalise', '~> 0.10.0'
pod 'lottie-ios'
pod 'SimulatorStatusMagic', configurations: ['Debug']
pod 'SwiftMessages'
pod 'ViewRow', git: 'https://github.com/EurekaCommunity/ViewRow', branch: 'master'
pod 'ZIPFoundation', '~> 0.9'
support_modules
target 'Tests-App' do
inherit! :search_paths
test_pods
end
end
target 'Extensions-Intents'
target 'Extensions-NotificationContent'
target 'Extensions-NotificationService'
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|
xcconfig_path = config.base_configuration_reference.real_path
xcconfig = File.read(xcconfig_path)
xcconfig.sub!('-framework "Lokalise"', '')
File.open(xcconfig_path, 'w') { |file| file << xcconfig }
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