Skip to content
This repository has been archived by the owner on Jan 18, 2024. It is now read-only.

[config] fix: add files to 'copy bundle resources', not 'compile sour… #2936

Merged
merged 1 commit into from
Nov 23, 2020
Merged
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
2 changes: 1 addition & 1 deletion packages/config/src/ios/utils/Xcodeproj.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export function addFileToGroup(
file.fileRef = project.generateUuid();
project.addToPbxFileReferenceSection(file);
project.addToPbxBuildFileSection(file);
project.addToPbxSourcesBuildPhase(file);
project.addToPbxResourcesBuildPhase(file);
const group = pbxGroupByPath(project, groupName);
if (!group) {
throw Error(`Group by name ${groupName} not found!`);
Expand Down