forked from aprock/react-native-os
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRNOS.podspec
More file actions
21 lines (19 loc) · 753 Bytes
/
RNOS.podspec
File metadata and controls
21 lines (19 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'json'
package = JSON.parse(File.read('package.json'))
Pod::Spec.new do |s|
s.name = 'RNOS'
s.authors = package['author']
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/aprock/react-native-os.git' }
s.platform = :ios, '9.0'
s.ios.deployment_target = '9.0'
s.source_files = 'ios/**/*.{h,m}'
s.exclude_files = 'android/**/*'
s.exclude_files = 'example/**/*'
s.dependency 'React'
end