forked from velikanov/SwiftPasscodeLock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathESPasscodeLock.podspec
More file actions
22 lines (20 loc) · 793 Bytes
/
Copy pathESPasscodeLock.podspec
File metadata and controls
22 lines (20 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'ESPasscodeLock'
s.module_name = 'PasscodeLock'
s.version = '5.0.1'
s.swift_version = '5.0'
s.ios.deployment_target = '8.0'
s.license = { type: 'MIT', file: 'LICENSE.txt' }
s.summary = 'An iOS passcode lock with TouchID / FaceID authentication written in Swift.'
s.homepage = 'https://github.com/erickyim/SwiftPasscodeLock'
s.authors = { 'Oskari Rauta' => '', 'Yanko Dimitrov' => '', 'Chris Ziogas' => '' }
s.source = { git: 'https://github.com/erickyim/SwiftPasscodeLock.git', tag: 'v5.0.1' }
s.source_files = 'PasscodeLock/*.{h,swift}',
'PasscodeLock/*/*.{swift}'
s.resources = [
'PasscodeLock/Views/*.xib',
'PasscodeLock/en.lproj/*'
]
s.ios.framework = 'LocalAuthentication'
s.requires_arc = true
end