forked from GetStream/stream-chat-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStreamChatUI-XCFramework.podspec
More file actions
26 lines (20 loc) · 994 Bytes
/
StreamChatUI-XCFramework.podspec
File metadata and controls
26 lines (20 loc) · 994 Bytes
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
Pod::Spec.new do |spec|
spec.name = 'StreamChatUI-XCFramework'
spec.version = '4.93.0'
spec.summary = 'StreamChat UI Components'
spec.description = 'StreamChatUI SDK offers flexible UI components able to display data provided by StreamChat SDK.'
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.7'
spec.platform = :ios, '13.0'
spec.requires_arc = true
spec.framework = 'Foundation', 'UIKit'
spec.module_name = 'StreamChatUI'
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.dependency 'StreamChat-XCFramework', "#{spec.version}"
spec.cocoapods_version = '>= 1.11.0'
end