-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSDK_lib_demo.podspec
31 lines (22 loc) · 1.06 KB
/
SDK_lib_demo.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
Pod::Spec.new do |s|
s.name = 'SDK_lib_demo'
s.version = '0.0.7'
s.summary = '这是一个SDK测试demo of SDK_lib_demo.'
s.description = <<-DESC
TODO: 这是一个SDK测试demo详细描述,我这里要详细描述一下,不然字数少于摘要会报警告.
DESC
s.homepage = 'https://github.com/ioschangnan-github'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { '[email protected]' => '[email protected]' }
s.source = { :git => 'https://github.com/ioschangnan-github/SDK-lib-demo.git', :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.ios.deployment_target = '8.0'
s.source_files = 'SDK_lib_demo/Classes/**/*'
s.frameworks = 'UIKit', 'Foundation'
s.dependency 'AFNetworking'
s.dependency 'SDWebImage'
s.resource_bundles = {
'SDK_lib_demo' => ['SDK_lib_demo/Assets/*.png']
}
end