-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiDebugCommandKit.podspec
More file actions
22 lines (21 loc) · 1.03 KB
/
Copy pathiDebugCommandKit.podspec
File metadata and controls
22 lines (21 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |spec|
spec.name = 'iDebugCommandKit'
spec.version = '0.1.0'
spec.summary = 'DEBUG-only local UIKit command server for iOS apps.'
spec.description = <<-DESC
A DEBUG-only, loopback-only command server for inspecting and driving a
UIKit app during development. It provides view-tree inspection, screenshots,
control activation, scrolling, text entry, and app-defined debug commands.
DESC
spec.homepage = 'https://github.com/Hippo0x0/iDebugCommandKit'
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.author = { 'Copytain' => '[email protected]' }
spec.source = { :git => 'https://github.com/Hippo0x0/iDebugCommandKit.git', :tag => spec.version.to_s }
spec.platform = :ios, '16.0'
spec.swift_versions = ['5.9', '6.0']
spec.source_files = 'Sources/iDebugCommandKit/**/*.swift'
spec.frameworks = 'Foundation', 'UIKit'
spec.pod_target_xcconfig = {
'SWIFT_ACTIVE_COMPILATION_CONDITIONS[config=Debug]' => '$(inherited) I_DEBUG_COMMAND_KIT'
}
end