Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -16,6 +16,7 @@ target_include_directories(react_nativemodule_featureflags PUBLIC ${REACT_COMMON
target_link_libraries(react_nativemodule_featureflags
react_codegen_rncore
react_cxxreact
react_cxxstableapi
react_featureflags
)
target_compile_reactnative_options(react_nativemodule_featureflags PRIVATE)
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -4,7 +4,7 @@
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @generated SignedSource<<c65d5fea853b54322321f86c1d5ce440>>
* @generated SignedSource<<40d25fafea07a23f9d4e146973c65cb5>>
*/

/**
Expand All@@ -19,6 +19,8 @@

#pragma once

#include <react/cxxstableapi/PrivateGuard.h>

#if __has_include("FBReactNativeSpecJSI.h") // CocoaPod headers on Apple
#include "FBReactNativeSpecJSI.h"
#else
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -50,6 +50,7 @@ Pod::Spec.new do |s|
s.dependency "ReactCommon/turbomodule/core"
s.dependency "React-RCTFBReactNativeSpec"
s.dependency "React-featureflags"
s.dependency "React-cxxstableapi"

mark_as_react_native_build(s)
end
Original file line numberDiff line numberDiff line change
Expand Up@@ -27,6 +27,8 @@ ${DO_NOT_MODIFY_COMMENT}

#pragma once

#include <react/cxxstableapi/PrivateGuard.h>

#if __has_include("FBReactNativeSpecJSI.h") // CocoaPod headers on Apple
#include "FBReactNativeSpecJSI.h"
#else
Expand Down
Loading