From 4213ffc12f049da731509067a54297c98d4e5696 Mon Sep 17 00:00:00 2001 From: Cedric Guillemet <1312968+CedricGuillemet@users.noreply.github.com> Date: Thu, 17 Oct 2024 10:52:16 +0200 Subject: [PATCH] arkit source path fix --- Package/gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Package/gulpfile.js b/Package/gulpfile.js index 7a9c0cd1..1aaecc53 100644 --- a/Package/gulpfile.js +++ b/Package/gulpfile.js @@ -329,7 +329,7 @@ const copyAndroidFiles = async () => { }); await new Promise(resolve => { - gulp.src('../Package/iOS/Build/_deps/babylonnative-src/Dependencies/xr/Source/ARCore/Include/*') + gulp.src('../Package/Android/Build/_deps/babylonnative-src/Dependencies/xr/Source/ARCore/Include/*') .pipe(gulp.dest(`${assemblediOSAndroidDir}/android/include`)) .on('end', resolve); });