-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDDKitSwift.podspec
More file actions
23 lines (23 loc) · 953 Bytes
/
DDKitSwift.podspec
File metadata and controls
23 lines (23 loc) · 953 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'DDKitSwift'
s.swift_version = '5.0'
s.version = '4.0.3'
s.license= { :type => "MIT", :file => "LICENSE" }
s.summary = 'DDKitSwift is a debugging SDK tool designed for iOS devices. It integrates a variety of practical debugging features to help developers and users identify and troubleshoot device issues.'
s.homepage = 'https://github.com/DamonHu/DDKitSwift'
s.authors = { 'DDKitSwift' => 'dong765@qq.com' }
s.source = { :git => "https://github.com/DamonHu/DDKitSwift.git", :tag => s.version}
s.requires_arc = true
s.ios.deployment_target = '12.0'
s.subspec 'core' do |cs|
cs.resource_bundles = {
'DDKitSwift' => ['pod/assets/**/*']
}
cs.source_files = "pod/*.swift", "pod/**/*.swift"
cs.dependency 'DDUtils/ui', '~> 5'
cs.dependency 'DDUtils/utils', '~> 5'
cs.dependency 'DDLoggerSwift', '~> 5'
end
s.default_subspec = "core"
s.documentation_url = 'https://dongge.org/blog/1307.html'
end