-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMercury-iOS.podspec
35 lines (25 loc) · 1.27 KB
/
Mercury-iOS.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
#
# Be sure to run `pod lib lint Mercury-iOS.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 = 'Mercury-iOS'
s.version = '1.0.0'
s.summary = 'Mercury 是一个长链工具,基于私有协议,并提供了房间管理、用户管理等功能'
s.homepage = 'https://github.com/BixinTech/mercury-ios'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
s.author = { 'Ju Liaoyuan' => '[email protected]' }
s.source = { :git => 'https://github.com/BixinTech/mercury-ios.git', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.libraries = "stdc++"
s.source_files = 'Mercury-iOS/Classes/**/*'
s.public_header_files = 'Mercury-iOS/Classes/**/*.h'
s.vendored_frameworks = 'Mercury-iOS/Frameworks/*'
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'}
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.dependency 'AFNetworking'
end