KeychainAccess.podspec 1.6 KB

12345678910111213141516171819202122232425262728293031323334
  1. Pod::Spec.new do |s|
  2. s.name = 'KeychainAccess'
  3. s.version = '4.2.2'
  4. s.summary = 'KeychainAccess is a simple Swift wrapper for Keychain that works on iOS and OS X.'
  5. s.description = <<-DESC
  6. KeychainAccess is a simple Swift wrapper for Keychain that works on iOS and OS X.
  7. Makes using Keychain APIs exremely easy and much more palatable to use in Swift.
  8. Features
  9. - Simple interface
  10. - Support access group
  11. - Support accessibility
  12. - Support iCloud sharing
  13. - **Support TouchID and Keychain integration (iOS 8+)**
  14. - **Support Shared Web Credentials (iOS 8+)**
  15. - Works on both iOS & OS X
  16. - watchOS and tvOS are also supported
  17. DESC
  18. s.homepage = 'https://git.forgetive.net/XCAppCollection/KeychainAccess'
  19. s.license = 'MIT'
  20. s.author = { 'kishikawa katsumi' => 'kishikawakatsumi@mac.com' }
  21. s.source = { :git => 'https://git.forgetive.net/XCAppCollection/KeychainAccess.git', :tag => "v#{s.version}" }
  22. s.social_media_url = 'https://twitter.com/k_katsumi'
  23. s.requires_arc = true
  24. s.source_files = 'Lib/KeychainAccess/*.swift'
  25. s.swift_version = '5.1'
  26. s.ios.deployment_target = '9.0'
  27. s.osx.deployment_target = '10.9'
  28. s.watchos.deployment_target = '3.0'
  29. s.tvos.deployment_target = '9.0'
  30. end