mirror of
https://github.com/devicekit/DeviceKit.git
synced 2026-05-17 10:20:34 +00:00
572fd0386f
* added of devices that support 5G network * fixed device list * updated Device.swift.gyb file * add Dynamic Island support * add test * Add hasUSBCConnectivity support * Add test for 5g support. * Remove trailing comma. * Add changelog entry. * Version bump. (v5.2.0) * Remove trailing whitespace. * Update changelog with SwiftUI fix already merged to master. * Remove trailing whitespace. --------- Co-authored-by: furiosFast <furios.fast@hotmail.it> Co-authored-by: 417-72KI <417.72ki@gmail.com> Co-authored-by: Mathieu Hausherr <mhausherr@gmail.com>
29 lines
1.1 KiB
Ruby
29 lines
1.1 KiB
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'DeviceKit'
|
|
s.version = '5.2.0'
|
|
s.summary = 'DeviceKit is a µ-framework that provides a value-type replacement of UIDevice.'
|
|
|
|
s.description = <<-DESC
|
|
`DeviceKit` is a value-type wrapper and extension of [`UIDevice`](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIDevice_Class/). It detects both devices and different simulators.
|
|
DESC
|
|
|
|
s.homepage = 'https://github.com/devicekit/DeviceKit'
|
|
s.license = 'MIT'
|
|
s.author = 'DeviceKit'
|
|
s.social_media_url = 'https://twitter.com/dennis_weissman'
|
|
|
|
s.requires_arc = true
|
|
s.ios.deployment_target = '11.0'
|
|
s.tvos.deployment_target = '11.0'
|
|
s.watchos.deployment_target = '4.0'
|
|
|
|
s.swift_version = '5.0'
|
|
|
|
s.source = { :git => 'https://github.com/devicekit/DeviceKit.git', :tag => s.version }
|
|
s.source_files = 'Source/Device.generated.swift'
|
|
|
|
s.resources = 'PrivacyInfo.xcprivacy'
|
|
|
|
s.requires_arc = true
|
|
end
|