-
Notifications
You must be signed in to change notification settings - Fork 354
/
Copy pathGodEye.podspec
80 lines (60 loc) · 2.56 KB
/
GodEye.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#
# Be sure to run `pod lib lint GodEye.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 = 'GodEye'
s.version = '2.0.3'
s.swift_versions = ["5.9"]
s.summary = 'Automaticly display Log,Crash,Network,ANR,Leak,CPU,RAM,FPS,NetFlow,Folder and etc with one line of code based on Swift. Just like God opened his eyes.'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
Automaticly display Log,Crash,Network,ANR,Leak,CPU,RAM,FPS,NetFlow,Folder and etc with one line of code based on Swift. Just like God opened his eyes..
DESC
s.homepage = 'https://github.com/zixun/GodEye'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'zixun' => '[email protected]' }
s.source = { :git => 'https://github.com/zixun/GodEye.git', :tag => s.version.to_s }
s.ios.deployment_target = '12.0'
s.source_files = 'GodEye/Classes/**/*'
s.resource_bundles = {
'GodEye' => ['GodEye/Assets/*.png']
}
s.subspec 'ANREye' do |subspec|
subspec.source_files = 'Core/ANREye/Classes/**/*'
end
s.subspec 'AppBaseKit' do |subspec|
subspec.source_files = 'Core/AppBaseKit/Classes/**/*'
end
s.subspec 'ASLEye' do |subspec|
subspec.source_files = 'Core/ASLEye/Classes/**/*'
end
s.subspec 'CrashEye' do |subspec|
subspec.source_files = 'Core/CrashEye/Classes/**/*'
end
s.subspec 'LeakEye' do |subspec|
subspec.source_files = 'Core/LeakEye/Classes/**/*'
end
s.subspec 'Log4G' do |subspec|
subspec.source_files = 'Core/Log4G/Classes/**/*'
end
s.subspec 'NetworkEye' do |subspec|
subspec.source_files = 'Core/NetworkEye/Classes/**/*'
end
s.subspec 'SystemEye' do |subspec|
subspec.source_files = 'Core/SystemEye/Classes/**/*'
end
s.subspec 'UIThreadEye' do |subspec|
subspec.source_files = 'Core/UIThreadEye/Classes/**/*'
end
s.dependency 'SQLite.swift'
s.dependency 'MJRefresh'
end