Commit f37671a7 authored by Lidan's avatar Lidan Committed by GitHub

Merge pull request #22 from convoyinc/jonathan/add-podspec

Add Podspec
parents a269d823 5a7af99f
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = 'react-native-notifications'
s.version = package['version']
s.summary = package['description']
s.description = package['description']
s.license = package['license']
s.author = package['author']
s.homepage = package['homepage']
s.source = { :git => 'https://github.com/wix/react-native-notifications', :tag => s.version }
s.requires_arc = true
s.platform = :ios, '8.0'
s.preserve_paths = 'LICENSE', 'README.md', 'package.json', 'notification.ios.js', 'notification.android.js', 'index.android.js', 'index.ios.js'
s.source_files = 'RNNotifications/*.{h,m}'
s.dependency 'React'
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment