-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCafeCommunitySDK.podspec
executable file
·54 lines (42 loc) · 1.87 KB
/
CafeCommunitySDK.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
#
# Be sure to run `pod lib lint CafeCommunitySDK.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 = 'CafeCommunitySDK'
s.version = '1.0.0'
s.summary = '韩国咖啡社区SDK封装,支持Swift.'
s.description = <<-DESC
韩国咖啡社区SDK封装,支持Swift
DESC
s.homepage = 'https://github.com/qihoogcsdk/CafeCommunitySDK'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'xuhaipeng' => 'xuhaipeng@360.cn' }
s.source = { :git => 'https://github.com/qihoogcsdk/CafeCommunitySDK.git', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
# 头文件
s.public_header_files = 'CafeCommunitySDK/Classes/CafeManager.h'
s.source_files = 'CafeCommunitySDK/Classes/**/*'
# 资源文件
s.resources = 'CafeCommunitySDK/Assets/*.bundle'
# 是否是静态库
s.static_framework = true
# 第三方非开源framework(多个)
s.vendored_frameworks = [
'CafeCommunitySDK/Classes/Vendor/NaverCafeSDK.framework',
]
# 链接设置 重要
s.xcconfig = {'OTHER_LDFLAGS' => '-ObjC'}
# # 模拟器排除 Apple Silicon
# s.pod_target_xcconfig = {
# 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'
# }
# s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
# 系统动态库(多个)
s.frameworks = 'AVKit','AVFoundation','MobileCoreServices','SystemConfiguration','MediaPlayer','CoreMedia','AssetsLibrary','Security','ImageIO','QuartzCore','WebKit','SafariServices','ReplayKit'
# 第三方库
s.dependency "naveridlogin-sdk-ios", '~> 4.1.3' # naver登录
end