-
Notifications
You must be signed in to change notification settings - Fork 0
/
xTracking.podspec
45 lines (38 loc) · 1.33 KB
/
xTracking.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
#
# Be sure to run `pod lib lint xTracking.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'xTracking'
s.version = '2.2.0.0'
s.summary = 'xTracking'
s.description = <<-DESC
本项目可实现UIKit控件的点击 & 曝光自动跟踪功能
DESC
s.homepage = 'https://github.com/jinsikui/xTracking'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'jinsikui' => '[email protected]' }
s.source = { :git => 'https://github.com/jinsikui/xTracking.git'}
s.ios.deployment_target = '9.0'
s.source_files = 'Source/*'
s.subspec 'Overall' do |all|
all.source_files = 'Source/Overall/*'
all.frameworks = 'UIKit', 'Foundation'
end
s.subspec 'Page' do |sp|
sp.source_files = 'Source/Page/*'
sp.dependency 'xTracking/Overall'
end
s.subspec 'Expose' do |se|
se.source_files = 'Source/Expose/*'
se.dependency 'xTracking/Overall'
se.dependency 'KVOController'
end
s.subspec 'Action' do |sa|
sa.source_files = 'Source/Action/*'
sa.dependency 'xTracking/Overall'
end
end