forked from square/Valet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathValet.podspec
20 lines (19 loc) · 875 Bytes
/
Valet.podspec
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 = 'Valet'
s.version = '4.1.2'
s.license = 'Apache License, Version 2.0'
s.summary = 'Securely store data on iOS, tvOS, watchOS, or macOS without knowing a thing about how the Keychain works. It\'s easy. We promise.'
s.homepage = 'https://github.com/square/Valet'
s.authors = 'Square'
s.source = { :git => 'https://github.com/square/Valet.git', :tag => s.version }
s.swift_version = '5.0'
s.source_files = 'Sources/Valet/**/*.{swift,h}'
s.public_header_files = 'Sources/Valet/*.h'
s.frameworks = 'Security'
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.macos.deployment_target = '10.11'
s.tvos.exclude_files = 'Sources/Valet/SinglePromptSecureEnclaveValet.swift'
s.watchos.exclude_files = 'Sources/Valet/SinglePromptSecureEnclaveValet.swift'
end