-
Notifications
You must be signed in to change notification settings - Fork 209
/
StreamChatUI.podspec
24 lines (19 loc) · 1015 Bytes
/
StreamChatUI.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |spec|
spec.name = "StreamChatUI"
spec.version = "4.65.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" => "[email protected]" }
spec.social_media_url = "https://getstream.io"
spec.swift_version = '5.6'
spec.platform = :ios, "13.0"
spec.requires_arc = true
spec.framework = "Foundation", "UIKit"
spec.module_name = "StreamChatUI"
spec.source = { :git => "https://github.com/GetStream/stream-chat-swift.git", :tag => "#{spec.version}" }
spec.source_files = ["Sources/StreamChatUI/**/*.swift", "Sources/StreamNuke/**/*.swift", "Sources/StreamSwiftyGif/**/*.swift"]
spec.resource_bundles = { "StreamChatUIResources" => ["Sources/StreamChatUI/Resources/**/*"] }
spec.dependency "StreamChat", "#{spec.version}"
end