-
-
Notifications
You must be signed in to change notification settings - Fork 237
Expand file tree
/
Copy pathRNInAppBrowser.podspec
More file actions
25 lines (19 loc) · 745 Bytes
/
RNInAppBrowser.podspec
File metadata and controls
25 lines (19 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = "RNInAppBrowser"
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 => package['repository']['url'], :tag => "v#{s.version}" }
s.requires_arc = true
s.platform = :ios, '9.0'
s.preserve_paths = 'LICENSE', 'README.md', 'package.json', 'index.js'
s.source_files = 'ios/**/*.{h,m}'
s.exclude_files = 'android/**/*'
s.dependency "React-Core"
#s.dependency "others"
end