From 96874239f1785b419d11bdafddf30da58d43df85 Mon Sep 17 00:00:00 2001 From: Hannes Tribus Date: Tue, 13 Sep 2016 17:48:48 +0200 Subject: [PATCH] Fix add Swift version to podspec file Without this you have to manually specify the Swift version every time you do a pod update or pod install --- KeychainSwift.podspec | 1 + 1 file changed, 1 insertion(+) diff --git a/KeychainSwift.podspec b/KeychainSwift.podspec index 62d2a23..c98bbad 100644 --- a/KeychainSwift.podspec +++ b/KeychainSwift.podspec @@ -19,4 +19,5 @@ Pod::Spec.new do |s| s.osx.deployment_target = "10.10" s.watchos.deployment_target = "2.0" s.tvos.deployment_target = "9.0" + s.xcconfig = { 'SWIFT_VERSION' => '3.0' } end \ No newline at end of file