-
Notifications
You must be signed in to change notification settings - Fork 345
/
KeychainSwift.podspec
24 lines (23 loc) · 1.17 KB
/
KeychainSwift.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
Pod::Spec.new do |s|
s.name = "KeychainSwift"
s.version = "24.0.0"
s.license = { :type => "MIT" }
s.homepage = "https://github.com/evgenyneu/keychain-swift"
s.summary = "A library for saving text and data in the Keychain with Swift."
s.description = <<-DESC
This is a collection of helper functions for saving text and data in the Keychain.
* Write and read text and Data with simple functions.
* Specify optional access rule for the keychain item.
* Limit operations to a specific access group.
DESC
s.authors = { "Evgenii Neumerzhitckii" => "sausageskin@gmail.com" }
s.source = { :git => "https://github.com/evgenyneu/keychain-swift.git", :tag => s.version }
s.screenshots = "https://raw.githubusercontent.com/evgenyneu/keychain-swift/master/graphics/keychain-swift-demo-3.png"
s.source_files = "Sources/*.swift"
s.resource_bundles = {"KeychainSwift" => ["Sources/PrivacyInfo.xcprivacy"]}
s.ios.deployment_target = "12.0"
s.osx.deployment_target = "10.13"
s.watchos.deployment_target = "4.0"
s.tvos.deployment_target = "12.0"
s.swift_version = "5.0"
end