Uh oh!
There was an error while loading. Please reload this page.
forked from kishikawakatsumi/KeychainAccess
- Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathKeychainAccess.podspec
More file actions
Latest commit
35 lines (31 loc) · 1.66 KB
/
Copy pathKeychainAccess.podspec
File metadata and controls
35 lines (31 loc) · 1.66 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
29
30
31
32
33
34
35
Pod::Spec.newdo |s|
s.name='KeychainAccess'
s.version='4.2.2'
s.summary='KeychainAccess is a simple Swift wrapper for Keychain that works on iOS and macOS.'
s.description=<<-DESC
KeychainAccess is a simple Swift wrapper for Keychain that works on iOS and macOS.
Makes using Keychain APIs exremely easy and much more palatable to use in Swift.
Features
- Simple interface
- Support access group
- Support accessibility
- Support iCloud sharing
- **Support TouchID and Keychain integration (iOS 8+)**
- **Support Shared Web Credentials (iOS 8+)**
- Works on both iOS & macOS
- watchOS and tvOS are also supported
DESC
s.homepage='https://github.com/kishikawakatsumi/KeychainAccess'
s.screenshots='https://raw.githubusercontent.com/kishikawakatsumi/KeychainAccess/master/Screenshots/01.png'
s.license='MIT'
s.author={'kishikawa katsumi'=>'kishikawakatsumi@mac.com'}
s.source={:git=>'https://github.com/kishikawakatsumi/KeychainAccess.git',:tag=>"v#{s.version}"}
s.social_media_url='https://twitter.com/k_katsumi'
s.requires_arc=true
s.source_files='Lib/KeychainAccess/*.swift'
s.swift_version='5.1'
s.ios.deployment_target='9.0'
s.osx.deployment_target='10.9'
s.watchos.deployment_target='3.0'
s.tvos.deployment_target='9.0'
end