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
8 changes: 7 additions & 1 deletion packages/react-native/scripts/ios-prebuild/xcframework.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ const frameworkLog = createLogger('XCFramework');
*/
const REACT_CORE_UMBRELLA_HEADER_PATH /*: string*/ = path.join(
__dirname,
'templates',
'React-umbrella.h',
);

Expand All @@ -40,10 +41,15 @@ const REACT_CORE_UMBRELLA_HEADER_PATH /*: string*/ = path.join(
*/
const RCT_APP_DELEGATE_UMBRELLA_HEADER_PATH /*: string*/ = path.join(
__dirname,
'templates',
'React_RCTAppDelegate-umbrella.h',
);

const RN_MODULEMAP_PATH /*: string*/ = path.join(__dirname, 'module.modulemap');
const RN_MODULEMAP_PATH /*: string*/ = path.join(
__dirname,
'templates',
'module.modulemap',
);

function buildXCFrameworks(
rootFolder /*: string */,
Expand Down
Loading