Skip to content

Commit

Permalink
Remove React pod dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
zoontek committed Nov 28, 2017
1 parent 1770b0d commit 9bc20b3
Showing 1 changed file with 13 additions and 15 deletions.
28 changes: 13 additions & 15 deletions ReactNativePermissions.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,19 @@ require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))

Pod::Spec.new do |s|
s.name = 'ReactNativePermissions'
s.version = package['version']
s.summary = package['description']
s.description = package['description']
s.homepage = package['homepage']
s.license = package['license']
s.author = package['author']
s.source = { :git => 'https://github.com/yonahforst/react-native-permissions.git', :tag => s.version }
s.name = 'ReactNativePermissions'
s.version = package['version']
s.summary = package['description']
s.description = package['description']
s.homepage = package['homepage']
s.license = package['license']
s.author = package['author']
s.source = { :git => 'https://github.com/yonahforst/react-native-permissions.git', :tag => s.version }

s.platform = :ios, '9.0'
s.ios.deployment_target = '8.0'
s.platform = :ios, '9.0'
s.ios.deployment_target = '8.0'

s.dependency 'React'

s.preserve_paths = 'LICENSE', 'package.json'
s.source_files = '**/*.{h,m}'
s.exclude_files = 'example/**/*'
s.preserve_paths = 'LICENSE', 'package.json'
s.source_files = '**/*.{h,m}'
s.exclude_files = 'example/**/*'
end

0 comments on commit 9bc20b3

Please sign in to comment.