-
Notifications
You must be signed in to change notification settings - Fork 3
/
Locker.podspec
20 lines (20 loc) · 1.14 KB
/
Locker.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "Locker"
s.version = "3.0.4"
s.summary = "Securely lock your secrets under the watch of TouchID or FaceID keeper 🔒"
s.description = <<-DESC
Lightweight manager for saving, fetching and updating secrets (string value) in Keychain using Biometric Authentication.
Includes methods for checking general changes in Biometric settings and device biometric type info (FaceID / TouchID / None).
DESC
s.homepage = "https://github.com/infinum/Locker.git"
s.license = "MIT"
s.author = { "Barbara Vujičić" => "[email protected]",
"Jasmin Abou Aldan" => "[email protected]",
"Zvonimir Medak" => "[email protected]"}
s.platform = :ios, "10.0"
s.swift_version = "5.1"
s.source = { :git => "https://github.com/infinum/Locker.git", :tag => "#{s.version}" }
s.source_files = "Sources/Locker/**/*.swift"
s.resource_bundles = { 'Locker_Locker' => ['Sources/Locker/**/*.json', 'Sources/Locker/SupportingFiles/PrivacyInfo.xcprivacy'] }
s.frameworks = "UIKit", "LocalAuthentication", "Security"
end