Browse Source

update podspec with deployment target set to 8.1 because "[iOS] Swift support uses dynamic frameworks and is therefore only supported on iOS > 8."

Marcin Krzyżanowski 10 years ago
parent
commit
3c5607898b
1 changed files with 3 additions and 1 deletions
  1. 3 1
      CryptoSwift.podspec

+ 3 - 1
CryptoSwift.podspec

@@ -8,8 +8,10 @@ Pod::Spec.new do |s|
   s.source       = { :git => "https://github.com/krzyzanowskim/CryptoSwift.git", :tag => "#{s.version}" }
   s.authors      = {'Marcin Krzyżanowski' => 'marcin.krzyzanowski@hakore.com'}
   s.social_media_url   = "https://twitter.com/krzyzanowskim"
-  s.ios.platform  = :ios, '7.1'
+  s.ios.platform  = :ios, '8.0'
+  s.ios.deployment_target = "8.0"
   s.osx.platform  = :osx, '10.9'
+  s.osx.deployment_target = "10.9"
   s.source_files  = "CryptoSwift/*"
   s.requires_arc = true
 end