-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathDLCMobilePlayer.podspec
More file actions
40 lines (35 loc) · 2.04 KB
/
DLCMobilePlayer.podspec
File metadata and controls
40 lines (35 loc) · 2.04 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
#
# Be sure to run `pod lib lint DLCMobilePlayer.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 http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'DLCMobilePlayer'
s.version = '0.3.8'
s.summary = 'A framework of video player for iOS devices that based on VLCKit.'
s.description = <<-DESC
A framework of video player for iOS devices that based on VLCKit(https://github.com/dklinzh/VLCKit). Supported protocols include http, rtsp, rtmp etc.
DESC
s.homepage = 'https://github.com/dklinzh/DLCMobilePlayer'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Daniel' => 'linzhdk@gmail.com' }
s.source = { :git => 'https://github.com/dklinzh/DLCMobilePlayer.git', :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.ios.deployment_target = '7.0'
s.private_header_files = 'DLCMobilePlayer/Classes/Aspects/**/*.h', 'DLCMobilePlayer/Classes/MSWeakTimer/**/*.h'
s.source_files = 'DLCMobilePlayer/Classes/**/*.{h,m}'
s.resources = 'DLCMobilePlayer/Assets/**/*.{xib,xcassets}'
#s.resource_bundles = { 'DLCMobilePlayer' => ['DLCMobilePlayer/Assets/**/*'] }
#s.public_header_files = 'Pod/Classes/**/*.h'
s.frameworks = 'QuartzCore', 'CoreText', 'AVFoundation', 'Security', 'CFNetwork', 'AudioToolbox', 'OpenGLES', 'CoreGraphics', 'VideoToolbox', 'CoreMedia'
s.libraries = 'c++', 'xml2', 'z', 'bz2', 'iconv'
s.vendored_frameworks = "DLCMobilePlayer/Libs/*.framework"
s.xcconfig = { 'ENABLE_BITCODE' => 'NO',
'GCC_PREPROCESSOR_DEFINITIONS' => 'DLCMobilePlayer=1',
'OTHER_SWIFT_FLAGS' => '-D DLCMobilePlayer' }
s.prefix_header_file = 'DLCMobilePlayer/Classes/DLCMobilePlayer-Prefix.pch'
s.dependency 'Reachability'
end