-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathPAWebView.podspec
More file actions
24 lines (19 loc) · 944 Bytes
/
Copy pathPAWebView.podspec
File metadata and controls
24 lines (19 loc) · 944 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = "PAWebView"
s.version = "0.2.1"
s.summary = " An component WebView for iOS base on WKWebView ."
s.description = <<-DESC
PAWeView is an extensible WebView which is built on top of WKWebView, the modern WebKit framework debuted in iOS 8.0. It provides fast Web for developing sophisticated iOS native or hybrid applications.
DESC
s.homepage = "https://github.com/llyouss/PAWeView"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Luoshengyou" => "13798686545@163.com" }
s.platform = :ios, "8.0"
s.requires_arc = true
s.source = { :git => "https://github.com/llyouss/PAWeView.git", :tag => "0.2.1" }
s.source_files ="PAWebView/**/*.{m,h}"
s.resource_bundles = {
'PAWebView' => ['PAWebView/PAWKNative/views/*.png']
}
s.resources = "PAWebView/PAWKNative/views/*.png"
end