-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftICMP.podspec
More file actions
23 lines (19 loc) · 855 Bytes
/
Copy pathSwiftICMP.podspec
File metadata and controls
23 lines (19 loc) · 855 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 |spec|
spec.name = "SwiftICMP"
spec.version = "0.0.1"
spec.summary = "Swift ICMPv4 sender"
spec.description = <<-DESC
Swift ICMPv4 sender iOS 15.0+ macOS 12.0+ tvOS 15.0+ watchOS 8.0+
DESC
spec.homepage = "https://github.com/mob-connection/SwiftICMP"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "mob-connection" => "ozhurbaiosdevelop@gmail.com" }
spec.ios.deployment_target = "15.0"
spec.osx.deployment_target = '12.0'
spec.tvos.deployment_target = '15.0'
spec.watchos.deployment_target = '8.0'
spec.swift_version = "5.5"
spec.source = { :git => "https://github.com/mob-connection/SwiftICMP.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/**/*.swift"
spec.resource_bundles = {'Sources' => ['Sources/PrivacyInfo.xcprivacy']}
end