forked from GetStream/stream-chat-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStreamChat-XCFramework.podspec
More file actions
25 lines (20 loc) · 973 Bytes
/
StreamChat-XCFramework.podspec
File metadata and controls
25 lines (20 loc) · 973 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
Pod::Spec.new do |spec|
spec.name = "StreamChat-XCFramework"
spec.version = "4.62.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.6'
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"
end