-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathGuidePageView.podspec
More file actions
21 lines (18 loc) · 1.06 KB
/
GuidePageView.podspec
File metadata and controls
21 lines (18 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'GuidePageView'
s.version = '1.2.0'
s.summary = 'App启动引导页,支持播放gif/png/jpg等类型的资源数组。'
s.homepage = 'https://github.com/SilongLi/GuidePageView.git'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.source = { :git => 'https://github.com/SilongLi/GuidePageView.git', :tag => s.version.to_s }
s.source_files = 'GuidePageView/Classes/**/*'
s.resources = "GuidePageView/GuideImage.bundle"
s.description = <<-DESC
App启动引导页,支持播放gif/png/jpg等类型的资源数组,及手动滑入主题。(建议引导页的图片都不要放在Assets文件中,因为使用imageName方法加载时,系统会缓存图片,造成内存暴增)
DESC
s.ios.deployment_target = '8.0'
s.requires_arc = true
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.2' }
s.frameworks = 'Foundation', 'UIKit'
end