From 44ffeebabe5153dd5800b1f46800f92363b1fc11 Mon Sep 17 00:00:00 2001 From: Matthew Raymer Date: Mon, 24 Mar 2025 09:01:56 +0000 Subject: [PATCH] chore: chang applicationId in iOS for consistency --- scripts/test-ios.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/test-ios.js b/scripts/test-ios.js index 51304a9..dcd7b15 100644 --- a/scripts/test-ios.js +++ b/scripts/test-ios.js @@ -800,7 +800,7 @@ const checkAndRegisterUrlScheme = (log) => { CFBundleURLName - timesafari.app + app.timesafari CFBundleURLSchemes timesafari @@ -855,10 +855,10 @@ const getAppIdentifier = () => { } // Default fallback - return 'timesafari.app'; + return 'app.timesafari'; } catch (error) { console.error('Error getting app identifier:', error); - return 'timesafari.app'; // Default fallback + return 'app.timesafari'; // Default fallback } };