mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Fix prefab prefix for fabricjni (#35648)
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/35648 The `fabricjni` prefab module was missing the `react/fabric` prefix. I'm adding it here. Ref: https://github.com/reactwg/react-native-releases/discussions/41#discussioncomment-4402506 Changelog: [Internal] [Changed] - Fix prefab prefix for fabricjni Reviewed By: cipolleschi Differential Revision: D42047434 fbshipit-source-id: 202db49cd1ada2462652dbd7e56bad6779c263ac
This commit is contained in:
committed by
Facebook GitHub Bot
parent
62d100aaa9
commit
3487640512
@@ -122,7 +122,7 @@ final def preparePrefab = tasks.register("preparePrefab", PreparePrefabHeadersTa
|
||||
new PrefabPreprocessingEntry(
|
||||
"fabricjni",
|
||||
[
|
||||
new Pair("src/main/jni/react/fabric", ""),
|
||||
new Pair("src/main/jni/react/fabric", "react/fabric/"),
|
||||
new Pair("src/main/jni/react/cxxcomponents", "react/cxxcomponents/")
|
||||
]
|
||||
),
|
||||
|
||||
@@ -7,8 +7,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <ComponentFactory.h>
|
||||
#include <fbjni/fbjni.h>
|
||||
#include <react/fabric/ComponentFactory.h>
|
||||
#include <react/renderer/componentregistry/ComponentDescriptorProviderRegistry.h>
|
||||
#include <react/renderer/componentregistry/ComponentDescriptorRegistry.h>
|
||||
#include <react/renderer/core/ConcreteComponentDescriptor.h>
|
||||
|
||||
Reference in New Issue
Block a user