Skip to content

Commit 87e47e5

Browse files
Mako-Lkirillzyusko
andauthored
Update correct path of RNKCOverKeyboardViewComponentDescriptor.h in … (#886)
Update correct path for custom shadow nodes ## 📜 Description Update correct path of RNKCOverKeyboardViewComponentDescriptor.h in OverKeyboardViewManager.mm and other custom shadow nkdes ## 💡 Motivation and Context It fixes build of ios and closes #885 ## 📢 Changelog ### iOS - Update correct path of custom shadow nodes. ## 🤔 How Has This Been Tested? I managed to build after this change :). ## 📝 Checklist - [X] Correct path of RNKCOverKeyboardViewComponentDescriptor.h --------- Co-authored-by: kirillzyusko <zyusko.kirik@gmail.com>
1 parent 7a19ea4 commit 87e47e5

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

ios/views/KeyboardControllerView.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#import <react/renderer/components/reactnativekeyboardcontroller/EventEmitters.h>
2424
#import <react/renderer/components/reactnativekeyboardcontroller/Props.h>
2525
#import <react/renderer/components/reactnativekeyboardcontroller/RCTComponentViewHelpers.h>
26-
#import <reactnativekeyboardcontroller/RNKCKeyboardControllerViewComponentDescriptor.h>
26+
#import <react/renderer/components/reactnativekeyboardcontroller/RNKCKeyboardControllerViewComponentDescriptor.h>
2727

2828
#import "KeyboardControllerModule-Header.h"
2929
#import "RCTFabricComponentsPlugins.h"

ios/views/KeyboardGestureAreaManager.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#import <react/renderer/components/reactnativekeyboardcontroller/EventEmitters.h>
1818
#import <react/renderer/components/reactnativekeyboardcontroller/Props.h>
1919
#import <react/renderer/components/reactnativekeyboardcontroller/RCTComponentViewHelpers.h>
20-
#import <reactnativekeyboardcontroller/RNKCKeyboardGestureAreaComponentDescriptor.h>
20+
#import <react/renderer/components/reactnativekeyboardcontroller/RNKCKeyboardGestureAreaComponentDescriptor.h>
2121

2222
#import "RCTFabricComponentsPlugins.h"
2323
#endif

ios/views/OverKeyboardViewManager.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#import <react/renderer/components/reactnativekeyboardcontroller/EventEmitters.h>
2020
#import <react/renderer/components/reactnativekeyboardcontroller/Props.h>
2121
#import <react/renderer/components/reactnativekeyboardcontroller/RCTComponentViewHelpers.h>
22-
#import <reactnativekeyboardcontroller/RNKCOverKeyboardViewComponentDescriptor.h>
22+
#import <react/renderer/components/reactnativekeyboardcontroller/RNKCOverKeyboardViewComponentDescriptor.h>
2323

2424
#import "RCTFabricComponentsPlugins.h"
2525
#endif

react-native-keyboard-controller.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Pod::Spec.new do |s|
6161
if new_arch_enabled
6262
s.subspec "common" do |ss|
6363
ss.source_files = ["common/cpp/**/*.{cpp,h}"]
64-
ss.header_dir = "reactnativekeyboardcontroller"
64+
ss.header_dir = "react/renderer/components/reactnativekeyboardcontroller"
6565
ss.private_header_files = "common/cpp/**/*.{h}"
6666
ss.pod_target_xcconfig = { "HEADER_SEARCH_PATHS" => "\"$(PODS_TARGET_SRCROOT)/common/cpp\"" }
6767
end

0 commit comments

Comments
 (0)