This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// this function is called from patched expo-apple-targets | |
// register all packages here | |
const swiftPackages = [ | |
{ | |
name: 'PackageName', | |
url: 'https://github.com/...', | |
version: '1.0.0' | |
} | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/node_modules/@bacons/apple-targets/build/withXcodeChanges.js b/node_modules/@bacons/apple-targets/build/withXcodeChanges.js | |
index ef64d1b..4813a52 100644 | |
--- a/node_modules/@bacons/apple-targets/build/withXcodeChanges.js | |
+++ b/node_modules/@bacons/apple-targets/build/withXcodeChanges.js | |
@@ -12,6 +12,7 @@ const target_1 = require("./target"); | |
const XCBuildConfiguration_json_1 = __importDefault(require("./template/XCBuildConfiguration.json")); | |
const TemplateBuildSettings = XCBuildConfiguration_json_1.default; | |
const withXcparse_1 = require("./withXcparse"); | |
+const injectWidgetIntentsToMainTarget = require("../../../../plugins/withWidgetIntents"); | |
const withXcodeChanges = (config, props) => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { withXcodeProject } = require('@expo/config-plugins') | |
const findFileReferenceByName = (xcodeProject, fileName) => { | |
const fileReferences = xcodeProject.hash.project.objects['PBXFileReference'] | |
return Object.fromEntries( | |
Object | |
.entries(fileReferences) | |
.filter(([key, value]) => value.name === `"${fileName}"`) | |
) |