forked from exyte/Chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExyteChat.podspec
31 lines (24 loc) · 898 Bytes
/
ExyteChat.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
26
27
28
29
30
31
Pod::Spec.new do |s|
s.name = "ExyteChat"
s.version = "2.0.6"
s.summary = "Chat with fully customizable message cells and built-in media picker written with SwiftUI"
s.homepage = 'https://github.com/exyte/Chat.git'
s.license = 'MIT'
s.author = { 'Exyte' => '[email protected]' }
s.source = { :git => 'https://github.com/exyte/Chat.git', :tag => s.version.to_s }
s.social_media_url = 'http://exyte.com'
s.ios.deployment_target = '16.0'
s.requires_arc = true
s.swift_version = "5.7"
s.source_files = [
'Sources/*.h',
'Sources/*.swift',
'Sources/**/*.swift'
]
s.resources = "Sources/ExyteChat/Resources/**/*"
s.dependency 'SwiftUIIntrospect'
s.dependency 'ExyteMediaPicker'
s.dependency 'FloatingButton'
s.dependency 'ActivityIndicatorView'
s.dependency 'ExytePopupView'
end