-
Notifications
You must be signed in to change notification settings - Fork 232
Expand file tree
/
Copy pathStreamChat-XCFramework.podspec
More file actions
27 lines (21 loc) · 1.01 KB
/
StreamChat-XCFramework.podspec
File metadata and controls
27 lines (21 loc) · 1.01 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
Pod::Spec.new do |spec|
spec.name = 'StreamChat-XCFramework'
spec.version = '4.94.0'
spec.summary = 'StreamChat iOS Client'
spec.description = 'stream-chat-swift is the official Swift client for Stream Chat, a service for building chat applications.'
spec.homepage = 'https://getstream.io/chat/'
spec.license = { type: 'BSD-3', file: 'LICENSE' }
spec.author = { 'getstream.io' => 'support@getstream.io' }
spec.social_media_url = 'https://getstream.io'
spec.swift_version = '5.10'
spec.ios.deployment_target = '13.0'
spec.requires_arc = true
spec.framework = 'Foundation'
spec.ios.framework = 'UIKit'
spec.module_name = 'StreamChat'
spec.source = { http: "https://github.com/GetStream/stream-chat-swift/releases/download/#{spec.version}/#{spec.module_name}.zip" }
spec.vendored_frameworks = "#{spec.module_name}.xcframework"
spec.preserve_paths = "#{spec.module_name}.xcframework/*"
spec.cocoapods_version = '>= 1.11.0'
spec.pod_target_xcconfig = { 'SWIFT_OPTIMIZATION_LEVEL' => '-Osize' }
end