-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathkerkee.podspec
62 lines (44 loc) · 2.03 KB
/
kerkee.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
Pod::Spec.new do |s|
s.name = "kerkee"
s.version = "1.2.0"
s.summary = "kerkee is a hybrid app framework,This repository is kerkee for ios"
s.description = "kerkee is a hybrid app framework,This repository is kerkee for ios, is the multi-agent framework"
s.homepage = "http://www.kerkee.com"
# s.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
s.license = "GNU"
# s.license = { :type => "MIT", :file => "LICENSE" }
# Or just: s.author = "kercer"
# s.authors = { "kercer" => "[email protected]" }
# s.social_media_url = "http://twitter.com/kercer"
s.author = { "zihong" => "[email protected]" }
s.social_media_url = "http://www.kerkee.com"
# s.platform = :ios
s.platform = :ios, "8.0"
# When using multiple platforms
# s.ios.deployment_target = "5.0"
# s.osx.deployment_target = "10.7"
# s.watchos.deployment_target = "2.0"
# s.tvos.deployment_target = "9.0"
#s.source = { :git => "/Users/zihong/Desktop/workspace/kercer/kerkee_ios", :tag => "v1.0.1" }
s.source = { :git => "https://github.com/kercer/kerkee_ios.git", :tag => "v#{s.version}", :submodules => true }
s.source_files = "kerkee/**/*.{h,m}"
s.public_header_files = "kerkee/**/*.h"
# s.resource = "icon.png"
# s.resources = "Resources/*.png"
# s.preserve_paths = "FilesToSave", "MoreFilesToSave"
s.framework = 'Foundation', 'CoreGraphics', 'UIKit'
# s.frameworks = "SomeFramework", "AnotherFramework"
s.library = "z"
# s.libraries = "iconv", "xml2"
s.requires_arc = true
# non_arc_files = 'kerkee/Browser/WebView/KCUtilWebView.{h,m}'
# s.exclude_files = non_arc_files
# s.subspec 'no-arc' do |ss|
# ss.requires_arc = false
# ss.frameworks = "UIKit", "Foundation" #支持的框架
# ss.source_files = non_arc_files
# end
# s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
s.dependency 'SSKeychain','~>1.2.3'
# s.dependency 'Reachability'
end