Skip to content
This repository has been archived by the owner on Jan 5, 2024. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
charpeni authored Oct 5, 2018
1 parent 3d6813c commit cb22b90
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
"description": "A React Native module that allows you to use native UI to select media from the device library or directly from the camera",
"version": "0.27.0",
"main": "index.js",
"homepage": "https://github.com/react-community/react-native-image-picker",
"repository": {
"type": "git",
"url": "https://github.com/marcshilling/react-native-image-picker.git"
"url": "https://github.com/react-community/react-native-image-picker.git"
},
"nativePackage": true,
"author": "Marc Shilling (marcshilling)",
Expand Down
20 changes: 13 additions & 7 deletions react-native-image-picker.podspec
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
require 'json'

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

Pod::Spec.new do |s|
s.name = "react-native-image-picker"
s.version = "0.14.3"
s.license = "MIT"
s.homepage = "https://github.com/marcshilling/react-native-image-picker"
s.name = package['name']
s.version = package['version']
s.summary = package['description']

s.authors = { 'Marc Shilling' => '[email protected]' }
s.summary = "A React Native module that allows you to use the native UIImagePickerController UI to select a photo from the device library or directly from the camera"
s.homepage = package['homepage']
s.license = package['license']
s.platform = :ios, "7.0"

s.source = { :git => "https://github.com/marcshilling/react-native-image-picker" }
s.source_files = "ios/*.{h,m}"

s.platform = :ios, "7.0"

s.dependency 'React'
end

0 comments on commit cb22b90

Please sign in to comment.