Skip to content

Commit

Permalink
Create ReactNativeShareExtension.podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
phuoc-insignia authored Dec 22, 2019
1 parent 6c9a377 commit 3d2c179
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions ReactNativeShareExtension.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
require 'json'

package = JSON.parse(File.read(File.join(__dir__, 'package.json')))

Pod::Spec.new do |s|
s.name = "ReactNativeShareExtension"
s.version = package['version']
s.summary = package['description']
s.license = package['license']

s.authors = package['author']
s.homepage = package['repository']['url']
s.platform = :ios, "9.0"
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '10.0'

s.source = { :git => "https://github.com/InsigniaVenturesPartners/react-native-share-extension.git", :tag => "master" }
s.source_files = "ios/**/*.{h,m}"

s.dependency 'React'
end

0 comments on commit 3d2c179

Please sign in to comment.