From f187984fa090e253527c65e23caa1e0db4894a25 Mon Sep 17 00:00:00 2001 From: plamworapot Date: Wed, 10 Oct 2018 11:16:53 +0700 Subject: [PATCH 1/2] Create react-native-custom-tabs.podspec --- react-native-custom-tabs.podspec | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 react-native-custom-tabs.podspec diff --git a/react-native-custom-tabs.podspec b/react-native-custom-tabs.podspec new file mode 100644 index 0000000..2b8190a --- /dev/null +++ b/react-native-custom-tabs.podspec @@ -0,0 +1,22 @@ +require 'json' + +package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) + +Pod::Spec.new do |s| + s.name = "react-native-custom-tabs" + s.version = package['version'] + s.author = { "droibit" => "roomful.rooms@gmail.com" } + s.license = 'Apache' + s.summary = s.name + s.homepage = 'https://github.com/droibit/react-native-custom-tabs' + s.source = { :git => 'https://github.com/droibit/react-native-custom-tabs.git', :tag => "#{s.version}" } + s.requires_arc = true + s.platform = :ios, "8.0" + s.pod_target_xcconfig = { "CLANG_CXX_LANGUAGE_STANDARD" => "c++14" } + s.header_dir = 'ios' + s.preserve_paths = "ios/**" + s.dependency 'React' + s.source_files = 'ios/**/*.{h,m}' + s.exclude_files = 'android/**/*' + s.libraries = "stdc++" +end From 79a267eecc928eae1a8f51662df1b667d12b3967 Mon Sep 17 00:00:00 2001 From: plamworapot Date: Wed, 10 Oct 2018 11:17:05 +0700 Subject: [PATCH 2/2] Delete react-native-custom-tabs.podspec --- ios/react-native-custom-tabs.podspec | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 ios/react-native-custom-tabs.podspec diff --git a/ios/react-native-custom-tabs.podspec b/ios/react-native-custom-tabs.podspec deleted file mode 100644 index 4b543e1..0000000 --- a/ios/react-native-custom-tabs.podspec +++ /dev/null @@ -1,21 +0,0 @@ -require 'json' - -package = JSON.parse(File.read(File.join(__dir__, '../package.json'))) - -Pod::Spec.new do |s| - s.name = "react-native-custom-tabs" - s.version = package['version'] - s.author = { "droibit" => "roomful.rooms@gmail.com" } - s.license = 'Apache' - s.summary = s.name - s.homepage = 'https://github.com/droibit/react-native-custom-tabs' - s.source = { :git => 'https://github.com/droibit/react-native-custom-tabs.git', :tag => "#{s.version}" } - s.requires_arc = true - s.platform = :ios, "8.0" - s.pod_target_xcconfig = { "CLANG_CXX_LANGUAGE_STANDARD" => "c++14" } - s.header_dir = 'ios' - s.preserve_paths = "ios/**" - s.dependency 'React' - s.source_files = "ios/**/*.{h,m}" - s.libraries = "stdc++" -end