-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSmartJSWebView.podspec
30 lines (25 loc) · 1.13 KB
/
SmartJSWebView.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
Pod::Spec.new do |s|
s.name = 'SmartJSWebView'
s.summary = '支持 H5 页面通过 JavaScript 与 Native App 交互的 WebView。'
s.description = <<-DESC
支持 H5 页面通过 JavaScript 与 Native App 交互的 WebView,支持白名单功能。
DESC
s.version = '2.0.9'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'pcjbird' => '[email protected]' }
s.social_media_url = 'http://www.lessney.com'
s.homepage = 'https://github.com/pcjbird/SmartJSWebView'
s.platform = :ios, '8.0'
s.ios.deployment_target = '8.0'
s.source = { :git => 'https://github.com/pcjbird/SmartJSWebView.git', :tag => s.version.to_s }
s.requires_arc = true
s.source_files = 'SmartJSWebView/**/*.{h,m}'
s.public_header_files = 'SmartJSWebView/public_headers/*.{h}'
s.frameworks = 'Foundation','UIKit','WebKit','JavaScriptCore','QuartzCore'
s.resource_bundles = {
'SmartJSWebView' => ['SmartJSWebView/resource/*.*'],
}
#s.dependency ''
s.requires_arc = true
s.pod_target_xcconfig = { 'OTHER_LDFLAGS' => '-lObjC' }
end