mirror of
https://github.com/zoriya/react-native-svg.git
synced 2026-05-24 11:44:39 +00:00
feat: add macOS support
This commit is contained in:
+13
-11
@@ -3,15 +3,17 @@ require 'json'
|
||||
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
|
||||
|
||||
Pod::Spec.new do |s|
|
||||
s.name = 'RNSVG'
|
||||
s.version = package['version']
|
||||
s.summary = package['description']
|
||||
s.license = package['license']
|
||||
s.homepage = package['homepage']
|
||||
s.authors = 'Horcrux Chen'
|
||||
s.platforms = { :ios => "9.0", :tvos => "9.2" }
|
||||
s.source = { :git => 'https://github.com/react-native-community/react-native-svg.git', :tag => "v#{s.version}" }
|
||||
s.source_files = 'ios/**/*.{h,m}'
|
||||
s.requires_arc = true
|
||||
s.dependency 'React'
|
||||
s.name = 'RNSVG'
|
||||
s.version = package['version']
|
||||
s.summary = package['description']
|
||||
s.license = package['license']
|
||||
s.homepage = package['homepage']
|
||||
s.authors = 'Horcrux Chen'
|
||||
s.platforms = { :osx => "10.14", :ios => "9.0", :tvos => "9.2" }
|
||||
s.source = { :git => 'https://github.com/react-native-community/react-native-svg.git', :tag => "v#{s.version}" }
|
||||
s.source_files = 'ios/**/*.{h,m}'
|
||||
s.ios.exclude_files = '**/*.macos.{h,m}'
|
||||
s.osx.exclude_files = '**/*.ios.{h,m}'
|
||||
s.requires_arc = true
|
||||
s.dependency 'React'
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user