-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDIMClient.podspec
More file actions
42 lines (36 loc) · 1.65 KB
/
DIMClient.podspec
File metadata and controls
42 lines (36 loc) · 1.65 KB
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
32
33
34
35
36
37
38
39
40
41
42
#
# Be sure to run `pod lib lint demo-objc.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'DIMClient'
s.version = '1.1.1'
s.summary = 'DIMPLES'
s.description = <<-DESC
DIMP Libraries for Easy Startup
DESC
s.homepage = 'https://github.com/dimchat/demo-objc'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Albert Moky' => 'albert.moky@gmail.com' }
# s.social_media_url = "https://twitter.com/AlbertMoky"
s.source = { :git => 'https://github.com/dimchat/demo-objc.git', :tag => s.version.to_s }
# s.platform = :ios, "11.0"
s.ios.deployment_target = '12.0'
s.source_files = 'Classes', 'Classes/**/*.{h,m,mm}', 'DIMClient/DIMClient/*.h'
# s.exclude_files = 'Classes/Exclude'
s.public_header_files = 'Classes/**/*.h', 'DIMClient/DIMClient/*.h'
# s.frameworks = 'Security'
# s.requires_arc = true
s.dependency 'DIMPlugins', '~> 1.2.0'
s.dependency 'DIMSDK', '~> 1.2.2'
s.dependency 'DIMCore', '~> 1.2.0'
s.dependency 'DaoKeDao', '~> 1.2.0'
s.dependency 'MingKeMing', '~> 1.2.0'
s.dependency 'StarTrek', '~> 0.1.3'
s.dependency 'FiniteStateMachine', '~> 2.3.2'
s.dependency 'ObjectKey', '~> 0.1.3'
# s.vendored_frameworks = 'Frameworks/MarsGate.framework'
end