From 924f860937a708f0e8ce0b344831db320e168beb Mon Sep 17 00:00:00 2001 From: rUv Date: Sat, 22 Aug 2026 17:29:59 -0400 Subject: [PATCH] feat(ios): add RuView LiDAR app entrypoint --- .../native/RuViewLiDAR/RuViewLiDARApp.swift | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 integrations/iphone-lidar/native/RuViewLiDAR/RuViewLiDARApp.swift diff --git a/integrations/iphone-lidar/native/RuViewLiDAR/RuViewLiDARApp.swift b/integrations/iphone-lidar/native/RuViewLiDAR/RuViewLiDARApp.swift new file mode 100644 index 00000000..d028a280 --- /dev/null +++ b/integrations/iphone-lidar/native/RuViewLiDAR/RuViewLiDARApp.swift @@ -0,0 +1,10 @@ +import SwiftUI + +@main +struct RuViewLiDARApp: App { + var body: some Scene { + WindowGroup { + ContentView() + } + } +}