Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 464
Expand file tree
/
Copy pathDeviceKit.podspec
More file actions
Latest commit
28 lines (21 loc) · 1.16 KB
/
Copy pathDeviceKit.podspec
File metadata and controls
28 lines (21 loc) · 1.16 KB
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
27
28
Pod::Spec.newdo |s|
s.name='DeviceKit'
s.version='5.8.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='13.0'
s.tvos.deployment_target='13.0'
s.watchos.deployment_target='7.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.resource_bundles={'DeviceKit'=>'Source/PrivacyInfo.xcprivacy'}
s.requires_arc=true
end