From 20d91c037f74a5063b597efd495c1629247a8534 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=27=C3=A9lectron=20rare?= <108685187+electron-rare@users.noreply.github.com> Date: Mon, 18 May 2026 17:04:59 +0200 Subject: [PATCH] build(ios): add AVLiveWire package to xcodegen The xcodegen project did not declare the shared AVLiveWire package, so USBServer.swift would fail to import it in the generated Xcode project. Add it as a local package dep. --- iphone-arbody/project.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/iphone-arbody/project.yml b/iphone-arbody/project.yml index 1b4ce0d..62aec4a 100644 --- a/iphone-arbody/project.yml +++ b/iphone-arbody/project.yml @@ -10,6 +10,10 @@ configFiles: Debug: Config/Shared.xcconfig Release: Config/Shared.xcconfig +packages: + AVLiveWire: + path: ../shared/AVLiveWire + targets: ARBodyTracker: type: application @@ -19,6 +23,9 @@ targets: - path: ARBodyTracker.swiftpm/Sources/ARBodyTracker excludes: - Info.plist + dependencies: + - package: AVLiveWire + product: AVLiveWire configFiles: Debug: Config/Shared.xcconfig Release: Config/Shared.xcconfig