forked from Chris-Corea/BiometricAuthenticator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBiometricAuthenticator.podspec
More file actions
19 lines (14 loc) · 919 Bytes
/
BiometricAuthenticator.podspec
File metadata and controls
19 lines (14 loc) · 919 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'BiometricAuthenticator'
s.version = '1.2.0'
s.summary = 'An easy to use wrapper around the standard iOS biometric authentication methods.'
s.description = <<-DESC
BiometricAuthenticator aims to ease the process of incorporating the use of TouchID and FaceID in your iOS app. At its core, BiometricAuthenticator provides an intuitive API to simplify the steps needed a modern and secure
DESC
s.homepage = 'https://github.com/Chris-Corea/BiometricAuthenticator'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Christopher Corea' => 'ccorea22@gmail.com' }
s.source = { :git => 'https://github.com/Chris-Corea/BiometricAuthenticator.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.source_files = 'BiometricAuthenticator/Classes/**/*'
end