-
Notifications
You must be signed in to change notification settings - Fork 76
/
SimpleKeychain.podspec
23 lines (21 loc) · 1.04 KB
/
SimpleKeychain.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'SimpleKeychain'
s.version = '1.2.0'
s.summary = 'A simple Keychain wrapper for iOS, macOS, tvOS, and watchOS'
s.description = <<-DESC
Easily store your user's credentials in the Keychain.
Supports sharing credentials with an access group or through iCloud, and integrating Touch ID / Face ID.
DESC
s.homepage = 'https://github.com/auth0/SimpleKeychain'
s.license = 'MIT'
s.author = { 'Auth0' => '[email protected]', 'Rita Zerrizuela' => '[email protected]' }
s.source = { :git => 'https://github.com/auth0/SimpleKeychain.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/auth0'
s.ios.deployment_target = '14.0'
s.osx.deployment_target = '11.0'
s.tvos.deployment_target = '14.0'
s.watchos.deployment_target = '7.0'
s.visionos.deployment_target = '1.0'
s.source_files = 'SimpleKeychain/*.swift'
s.swift_versions = ['5.9']
end