-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathPKShortVideo.podspec
More file actions
20 lines (18 loc) · 917 Bytes
/
Copy pathPKShortVideo.podspec
File metadata and controls
20 lines (18 loc) · 917 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "PKShortVideo"
s.version = "0.9.5"
s.license = "MIT"
s.summary = "A video library like WeChat short video for iOS."
s.homepage = "https://github.com/pepsikirk/PKShortVideo"
s.author = { "pepsikirk" => "pepsikirk@gmail.com" }
s.source = { :git => "https://github.com/pepsikirk/PKShortVideo.git", :tag => s.version }
s.screenshots = "https://raw.githubusercontent.com/pepsikirk/PKShortVideo/master/Screenshots/gif.gif"
s.platform = :ios, "12.0"
s.resources = "PKShortVideo/PKAsset/*.png"
s.frameworks = "AVFoundation", "CoreMedia", "CoreVideo", "OpenGLES", "QuartzCore"
s.requires_arc = true
s.pod_target_xcconfig = {
"GCC_PREPROCESSOR_DEFINITIONS" => "$(inherited) GLES_SILENCE_DEPRECATION=1 COREVIDEO_SILENCE_GL_DEPRECATION=1"
}
s.source_files = 'PKShortVideo/**/*.{h,m}' , 'PKShortVideo/*.{h,m}'
end