From a4528f57b86225695c43464bbfcdbdcc752fa2d5 Mon Sep 17 00:00:00 2001 From: Programistich <35292229+Programistich@users.noreply.github.com> Date: Sun, 2 Aug 2026 16:28:41 +0300 Subject: [PATCH] Fix App Shortcuts phrase missing applicationName placeholder Siri Shortcut phrases must contain \(.applicationName); a hardcoded "Find Flipper" phrase fails App Shortcuts validation and breaks the build. --- Flipper/AppIntents/FlipperShortcuts.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Flipper/AppIntents/FlipperShortcuts.swift b/Flipper/AppIntents/FlipperShortcuts.swift index cf9d7570..817f44b2 100644 --- a/Flipper/AppIntents/FlipperShortcuts.swift +++ b/Flipper/AppIntents/FlipperShortcuts.swift @@ -18,7 +18,8 @@ struct FlipperShortcuts: AppShortcutsProvider { AppShortcut( intent: PlayAlert(), phrases: [ - "Find Flipper" + "Find \(.applicationName)", + "Find my \(.applicationName)" ] ) }