Skip to content

Commit cb7f898

Browse files
committed
Merge commit '662d7ba244ea5dbaf8288e4db62bf04c40329a7c' into develop
2 parents 0fc6956 + 662d7ba commit cb7f898

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
require 'json'
2+
3+
package = JSON.parse(File.read(File.join(__dir__, '../../node_modules/react-native-custom-tabs/package.json')))
4+
5+
Pod::Spec.new do |s|
6+
s.name = "react-native-custom-tabs"
7+
s.version = package['version']
8+
s.author = 'droibit'
9+
s.license = 'Apache'
10+
s.summary = s.name
11+
s.homepage = 'https://github.com/droibit/react-native-custom-tabs'
12+
s.source = { :git => 'https://github.com/droibit/react-native-custom-tabs', :commit => '630f54c7ead2e18fd22df94edb5ab5242b674948' }
13+
s.requires_arc = true
14+
s.platform = :ios, "8.0"
15+
s.pod_target_xcconfig = { "CLANG_CXX_LANGUAGE_STANDARD" => "c++14" }
16+
s.header_dir = 'ios'
17+
s.preserve_paths = "ios/**"
18+
s.dependency 'React'
19+
s.source_files = "ios/**/*.{h,m}"
20+
s.libraries = "stdc++"
21+
end

0 commit comments

Comments
 (0)