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

This commit is contained in:
Matteo Pagani 2020-10-05 17:12:56 +02:00 committed by GitHub
parent 2d24131910
commit f2041955a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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