Browse Source

fix(podspec): Lowered deployment target for MacOS to 10.13 (#1673)

Matteo Pagani 3 years ago
parent
commit
f2041955a2
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      react-native-webview.podspec

+ 1
- 1
react-native-webview.podspec View File

@@ -10,7 +10,7 @@ Pod::Spec.new do |s|
10 10
 
11 11
   s.authors      = package['author']
12 12
   s.homepage     = package['homepage']
13
-  s.platforms    = { :ios => "9.0", :osx => "10.14" }
13
+  s.platforms    = { :ios => "9.0", :osx => "10.13" }
14 14
 
15 15
   s.source       = { :git => "https://github.com/react-native-community/react-native-webview.git", :tag => "v#{s.version}" }
16 16
   s.source_files  = "apple/**/*.{h,m}"