From 40e81cfb4d3f6919df0a6374bccfa010133d1274 Mon Sep 17 00:00:00 2001 From: Cuong Lam Date: Thu, 4 Jul 2019 23:40:50 +0700 Subject: [PATCH] Fix issue `depends on React/RCTText` for react-native 0.60 --- ReactNativeKeyboardManager.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ReactNativeKeyboardManager.podspec b/ReactNativeKeyboardManager.podspec index f46e7c8..12b7756 100644 --- a/ReactNativeKeyboardManager.podspec +++ b/ReactNativeKeyboardManager.podspec @@ -18,11 +18,11 @@ Pod::Spec.new do |s| s.license = license s.authors = author s.source = { :git => repository, :tag => version } - s.platform = :ios, "8.0" + s.platform = :ios, "9.0" s.preserve_paths = 'README.md', 'package.json', '*.js' s.source_files = 'ios/ReactNativeKeyboardManager/**/*.{h,m}' s.dependency 'React' - s.dependency 'React/RCTText' + s.dependency 'React-RCTText' s.dependency 'IQKeyboardManager', iqVersion end