-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathWKTrackingData.podspec
More file actions
30 lines (21 loc) · 1 KB
/
WKTrackingData.podspec
File metadata and controls
30 lines (21 loc) · 1 KB
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 |spec|
spec.name = "WKTrackingData"
spec.version = "0.0.9"
spec.summary = "基于AOP的全埋点库"
spec.description = "一款轻量级的全埋点库,除了自动追踪用户事件外,也允许业务扩展,忽略和添加自定义参数。"
spec.homepage = "https://github.com/wkjsos/WKTrackingData.git"
spec.license = { :type => 'MIT', :text => <<-LICENSE
Copyright kurt_wang 2020
LICENSE
}
spec.author = { "kurt_wang" => "931625530@qq.com" }
spec.platform = :ios, "8.0"
spec.source = { :git => "https://github.com/wkjsos/WKTrackingData.git", :tag => "#{spec.version}" }
spec.source_files = "WKTrackingData/WKTrackingData/Core/*" , "WKTrackingData/WKTrackingData/Core/AOP/*"
spec.resource_bundles = {
'WKTrackingData' => 'WKTrackingData/WKTrackingData/Core/Resources/viewcontroller_blacklist.json'
}
spec.subspec 'Util' do |ss|
ss.source_files = "WKTrackingData/WKTrackingData/Core/Util/*"
end
end