-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathBioAuth.podspec
More file actions
executable file
·21 lines (17 loc) · 876 Bytes
/
BioAuth.podspec
File metadata and controls
executable file
·21 lines (17 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "BioAuth"
s.version = "1.1.0"
s.summary = "A delightful Biometrics Authenticating framework written in Swift"
s.description = <<-DESC
A delightful Biometrics Authenticating framework for iOS platforms written in Swift.
DESC
s.homepage = "https://github.com/Meniny/BioAuthenticator"
s.license = 'MIT'
s.author = { "Meniny" => "Meniny@qq.com" }
s.source = { :git => "https://github.com/Meniny/BioAuthenticator.git", :tag => s.version.to_s }
s.social_media_url = 'http://meniny.cn/'
s.ios.deployment_target = '9.0'
s.source_files = 'BioAuthenticator/**/*{.h}','BioAuthenticator/**/*{.swift}'
s.public_header_files = 'BioAuthenticator/**/*{.h}'
s.frameworks = 'Foundation', 'LocalAuthentication'
end