From a7a700c216def44147091395ff178086b53b45b3 Mon Sep 17 00:00:00 2001 From: Felix Schulze Date: Fri, 1 Aug 2014 09:02:43 +0200 Subject: [PATCH] WebKit must be weak, because it is not available on iOS 7 --- 1PasswordExtension.podspec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/1PasswordExtension.podspec b/1PasswordExtension.podspec index cad0ed6..15b5ef1 100644 --- a/1PasswordExtension.podspec +++ b/1PasswordExtension.podspec @@ -23,7 +23,8 @@ Pod::Spec.new do |s| s.source = { :git => "https://github.com/AgileBits/onepassword-app-extension.git", :tag => s.version } s.platform = :ios, 7.0 s.source_files = "*.{h,m}" - s.frameworks = [ "UIKit", "WebKit" ] + s.frameworks = "UIKit" + s.weak_framework = "WebKit" s.exclude_files = "Demos" s.resources = "1Password.xcassets" s.requires_arc = true