-
Notifications
You must be signed in to change notification settings - Fork 1
/
SendbirdSwiftUI.podspec
25 lines (25 loc) · 1.12 KB
/
SendbirdSwiftUI.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
25
Pod::Spec.new do |s|
s.name = "SendbirdSwiftUI"
s.version = "1.0.0"
s.summary = "Sendbird SwiftUI SDK based on SendbirdChatSDK"
s.description = "SendbirdSwiftUI is a framework composed of basic UI components based on SwiftUI and SendbirdChatSDK."
s.homepage = "https://sendbird.com"
s.documentation_url = 'https://sendbird.com/docs/chat/uikit/v3/swiftui/overview'
s.license = "Commercial"
s.authors = {
"Tez" => "[email protected]",
"Celine" => "[email protected]",
"Damon" => "[email protected]",
"Jed" => "[email protected]",
"Minhyuk" => "[email protected]",
"Young" => "[email protected]",
"Kai" => "[email protected]"
}
s.platform = :ios, "15.0"
s.source = { :http => "https://github.com/sendbird/sendbird-swiftui-ios/releases/download/#{s.version}/SendbirdSwiftUI.zip", :sha1 => "00608fa56dfb8735ab2f98a39780fc3b0bdfa665" }
s.ios.vendored_frameworks = 'SendbirdSwiftUI/SendbirdSwiftUI.xcframework'
s.ios.frameworks = ["UIKit", "SwiftUI", "Foundation", "CoreData", "SendbirdChatSDK"]
s.requires_arc = true
s.dependency "SendbirdChatSDK", ">= 4.23.1"
s.ios.library = "icucore"
end