-
Notifications
You must be signed in to change notification settings - Fork 382
/
UICKeyChainStore.podspec
32 lines (28 loc) · 1.63 KB
/
UICKeyChainStore.podspec
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
Pod::Spec.new do |s|
s.name = "UICKeyChainStore"
s.version = "2.2.1"
s.summary = "UICKeyChainStore is a simple wrapper for Keychain that works on iOS and OS X. Makes using Keychain APIs as easy as NSUserDefaults."
s.description = <<-DESC
UICKeyChainStore is a simple wrapper for Keychain that works on iOS and OS X.
Makes using Keychain APIs as easy as NSUserDefaults.
Features
- Simple interface
- Support access group
- [Support accessibility](#accessibility)
- [Support iCloud sharing](#icloud_sharing)
- **[Support TouchID and Keychain integration (iOS 8+)](#touch_id_integration)**
- Works on both iOS & OS X
DESC
s.homepage = "https://github.com/kishikawakatsumi/UICKeyChainStore"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "kishikawa katsumi" => "[email protected]" }
s.source = { :git => "https://github.com/kishikawakatsumi/UICKeyChainStore.git", :tag => "v#{s.version}" }
s.social_media_url = "https://twitter.com/k_katsumi"
s.ios.deployment_target = "4.3"
s.osx.deployment_target = "10.7"
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.requires_arc = true
s.source_files = "Lib/UICKeyChainStore/*.{h,m}"
s.framework = "Security"
end