Skip to content

Instantly share code, notes, and snippets.

View jpudysz's full-sized avatar
🏁
Hacking JSI

Jacek Pudysz jpudysz

🏁
Hacking JSI
View GitHub Profile
@jpudysz
jpudysz / withSwiftPackages.js
Created March 9, 2024 15:56
Add Swift Package to Watch target (Expo)
// 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'
}
]
@jpudysz
jpudysz / @bacons+apple-targets+0.0.3.patch
Created February 24, 2024 11:33
Inject iOS17 Live Activity Intents to expo-apple-targets (Add target to any file)
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) => {
@jpudysz
jpudysz / live-activity-intents.js
Created February 1, 2024 17:48
Add target to any file in Xcode with Expo config plugin
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}"`)
)