Browse Source

Added podspec

master
Henning Hall 7 years ago
parent
commit
cc62714251
1 changed files with 19 additions and 0 deletions
  1. +19
    -0
      react-native-maps.podspec

+ 19
- 0
react-native-maps.podspec View File

@ -0,0 +1,19 @@
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = "react-native-date-picker"
s.version = package['version']
s.summary = "React Native Date Picker component for Android and iOS"
s.authors = { "henninghall" => "henning.hall@hotmail.com" }
s.homepage = "https://github.com/henninghall/react-native-date-picker"
s.license = package['license']
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/henninghall/react-native-date-picker.git" }
s.source_files = "ios/RNDatePicker/*.{h,m}"
s.dependency 'React'
end

Loading…
Cancel
Save