From c51733372c2353531d9d8d48ca63b4a8c0f34d54 Mon Sep 17 00:00:00 2001 From: youngcube Date: Thu, 29 Jun 2017 08:23:01 +0800 Subject: [PATCH] Podfile add macos support --- react-native-sqlite-storage.podspec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/react-native-sqlite-storage.podspec b/react-native-sqlite-storage.podspec index 4d35dabd..50898551 100644 --- a/react-native-sqlite-storage.podspec +++ b/react-native-sqlite-storage.podspec @@ -11,7 +11,8 @@ Pod::Spec.new do |s| s.author = package['author'] s.source = { :git => package['repository']['url'], :tag => "v#{s.version}" } - s.platform = :ios, "8.0" + s.ios.deployment_target = '8.0' + s.osx.deployment_target = '10.10' s.preserve_paths = 'README.md', 'LICENSE', 'package.json', 'sqlite.js' s.source_files = "src/ios/*.{h,m}"