-
Notifications
You must be signed in to change notification settings - Fork 28
/
WuKongIMSDK.podspec
62 lines (51 loc) · 2.37 KB
/
WuKongIMSDK.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#
# Be sure to run `pod lib lint WuKongIMSDK.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 = 'WuKongIMSDK'
s.version = '1.1.0'
s.summary = '悟空IM是一款简单,高效,支持完全私有化的即时通讯.'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
悟空IM是一款简单,高效,支持完全私有化的即时通讯,提供群聊,点对点通讯解决方案.
DESC
s.homepage = 'https://github.com/WuKongIM/WuKongIMiOSSDK'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'tangtaoit' => 'tt@tgo.ai' }
s.source = { :git => "https://github.com/WuKongIM/WuKongIMiOSSDK.git" }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.platform = :ios, '11.0'
s.requires_arc = true
s.ios.deployment_target = '11.0'
s.vendored_libraries = 'WuKongIMSDK/Classes/private/arm/lib/*.a'
s.preserve_paths = 'WuKongIMSDK/Classes/private/arm/lib/*.a'
s.libraries = 'opencore-amrnb', 'opencore-amrwb','vo-amrwbenc'
s.source_files = 'WuKongIMSDK/Classes/**/*'
s.public_header_files = 'WuKongIMSDK/Classes/**/*.h'
s.private_header_files = 'WuKongIMSDK/Classes/private/**/*.h'
s.frameworks = 'UIKit', 'MapKit', 'Security'
# s.xcconfig = {
# 'ENABLE_BITCODE' => 'NO',
# "OTHER_LDFLAGS" => "-ObjC"
# }
s.resource_bundles = {
'WuKongIMSDK' => ['WuKongIMSDK/Assets/*.png','WuKongIMSDK/Assets/Migrations/*']
}
s.pod_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64',
'DEFINES_MODULE' => 'YES'
}
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.dependency 'CocoaAsyncSocket', '~> 7.6.5'
s.dependency 'FMDB/SQLCipher', '~>2.7.5'
s.dependency '25519', '~>2.0.2'
end