-
Notifications
You must be signed in to change notification settings - Fork 110
/
BiometricAuthentication.podspec
27 lines (17 loc) · 1.11 KB
/
BiometricAuthentication.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
Pod::Spec.new do |s|
s.name = "BiometricAuthentication"
s.version = "3.1.3"
s.summary = "Use Apple FaceID or TouchID authentication in your app using BiometricAuthentication."
s.description = <<-DESC
BiometricAuthentication is very simple and easy to use that handles Touch ID and Face ID authentication based on the device.
DESC
s.homepage = "https://github.com/rushisangani/BiometricAuthentication"
s.screenshots = "https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/master/Images/image1.png", "https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/master/Images/image2.png", "https://raw.githubusercontent.com/rushisangani/BiometricAuthentication/master/Images/image3.png"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Rushi Sangani" => "rushisangani@gmail.com" }
s.source = { :git => "https://github.com/rushisangani/BiometricAuthentication.git", :tag => "v#{s.version}" }
s.ios.deployment_target = '12.0'
s.source_files = "BiometricAuthentication/**/*.swift"
s.requires_arc = true
s.swift_version = "5.0"
end