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

Commit

Permalink
[config] fix: add files to 'copy bundle resources', not 'compile sour…
Browse files Browse the repository at this point in the history
…ces' build phase (#2936)
  • Loading branch information
cruzach authored Nov 23, 2020
1 parent ff620db commit 76c2ea3
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 76c2ea3

Please sign in to comment.