forked from D-32/DMPasscode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDMPasscode.podspec
More file actions
20 lines (17 loc) · 837 Bytes
/
DMPasscode.podspec
File metadata and controls
20 lines (17 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "DMPasscode"
s.version = "2.0.1"
s.summary = "Passcode screen with Touch ID support"
s.homepage = "https://github.com/d-32/DMPasscode"
s.license = 'Public Domain'
s.author = { "Dylan Marriott" => "info@d-32.com" }
s.source = { :git => "https://github.com/d-32/DMPasscode.git", :tag => s.version.to_s }
s.social_media_url = "https://twitter.com/dylan36032"
s.screenshot = "http://46.105.26.1/uploads/passcode.png"
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes'
s.resource_bundles = { 'DMPasscode' => 'Pod/Assets/*.lproj' }
s.public_header_files = 'Pod/Classes/DMPasscode.h', 'Pod/Classes/DMPasscodeConfig.h'
s.frameworks = 'UIKit', 'Security', 'LocalAuthentication'
end