From 351f81a555176cdbf52c83b806a2ddaa52c47724 Mon Sep 17 00:00:00 2001 From: Mark Chan <45706356+WindowsMEMZ@users.noreply.github.com> Date: Sat, 16 Dec 2023 17:12:35 +0800 Subject: [PATCH] Update AboutView.swift --- DarockBili Watch App/Others/AboutView.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/DarockBili Watch App/Others/AboutView.swift b/DarockBili Watch App/Others/AboutView.swift index c6d8a2e87..ed67bd417 100644 --- a/DarockBili Watch App/Others/AboutView.swift +++ b/DarockBili Watch App/Others/AboutView.swift @@ -28,6 +28,7 @@ struct AboutView: View { NavigationLink("", isActive: $isUiTestViewPresented, destination: {DebugUITestView()}) .frame(width: 0, height: 0) Text("喵哩喵哩 v\(Bundle.main.infoDictionary?["CFBundleShortVersionString"] as! String) Build \(Bundle.main.infoDictionary?["CFBundleVersion"] as! String)") + .accessibilityIdentifier("DebugUITestButton10") .onTapGesture(count: 10) { isUiTestViewPresented = true }