-
Notifications
You must be signed in to change notification settings - Fork 1
/
TIoTLinkKit_IJKPlayer.podspec
26 lines (21 loc) · 1.45 KB
/
TIoTLinkKit_IJKPlayer.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
Pod::Spec.new do |s|
s.name = 'TIoTLinkKit_IJKPlayer'
s.version = ENV['LIB_VERSION'] || '1.0.0'
s.summary = '该仓库为方便个人仓库构建使用,如有其他需求还请从官网下载原SDK'
s.description = <<-DESC
在CI构建中,有些SDK没有提供供方便pod集成使用,在此仓库提供个聚合SDK以便更好的支持CI。
DESC
s.homepage = 'https://github.com/tencentyun/iot-thirdparty-ios'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { '[email protected]' => '[email protected]' }
s.source = { :git => 'https://github.com/tencentyun/iot-thirdparty-ios.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
# s.pod_target_xcconfig = { 'OTHER_LDFLAGS' => '-all_load' }
# s.static_framework = true
s.vendored_libraries = 'Source/IJKPlayer-iOS/libcrypto.a', 'Source/IJKPlayer-iOS/libssl.a'
s.vendored_frameworks = 'Source/IJKPlayer-iOS/IJKMediaFramework.framework'
s.frameworks = "AudioToolbox", "AVFoundation", "CoreGraphics", "CoreMedia", "CoreVideo", "MobileCoreServices", "OpenGLES", "QuartzCore", "VideoToolbox", "Foundation", "UIKit", "MediaPlayer"
s.libraries = "bz2", "z", "stdc++"
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
end