forked from ashleymills/Reachability.swift
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReachabilitySwift.podspec
More file actions
26 lines (24 loc) · 917 Bytes
/
ReachabilitySwift.podspec
File metadata and controls
26 lines (24 loc) · 917 Bytes
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
Pod::Spec.new do |spec|
spec.name = 'ReachabilitySwift'
spec.version = '6.0.0'
spec.module_name = 'Reachability'
spec.homepage = 'https://github.com/ashleymills/Reachability.swift'
spec.authors = {
'Ashley Mills' => 'ashleymills@mac.com'
}
spec.summary = 'Replacement for Apple\'s Reachability re-written in Swift with callbacks.'
spec.license = { :type => 'MIT' }
# Source Info
spec.ios.deployment_target = "12.0"
spec.osx.deployment_target = "10.13"
spec.source = {
:git => 'https://github.com/JivoChat/ReachabilitySwift.git',
:tag => "v#{spec.version}"
}
spec.source_files = 'Sources/Reachability.swift'
spec.resource_bundles = {"ReachabilitySwift" => ["Sources/PrivacyInfo.xcprivacy"]}
spec.framework = 'SystemConfiguration'
spec.ios.framework = 'CoreTelephony'
spec.requires_arc = true
spec.swift_version = '5.0'
end