Dan Ballard pushed to branch tor-browser-152.0a1-16.0-2 at The Tor Project / Applications / Tor Browser Commits: 068ab2f5 by clairehurst at 2026-06-08T16:54:02-06:00 fixup! [android] Disable features and functionality Bug 44769: Remove crash screen - - - - - 1 changed file: - mobile/android/fenix/app/src/main/java/org/mozilla/fenix/startupCrash/StartupCrashScreen.kt Changes: ===================================== mobile/android/fenix/app/src/main/java/org/mozilla/fenix/startupCrash/StartupCrashScreen.kt ===================================== @@ -53,15 +53,13 @@ internal fun StartupCrashScreen(store: StartupCrashStore) { verticalArrangement = Arrangement.Center, horizontalAlignment = Alignment.CenterHorizontally, ) { - ScreenImg() - - Spacer(modifier = Modifier.height(16.dp)) ScreenText() Spacer(modifier = Modifier.height(24.dp)) - when (state.uiState) { + // tb#44769 Force state.uiState to be UiState.Finished because we don't want to report crashes + when (UiState.Finished) { UiState.Idle -> { ReportButtons(store) } @@ -153,16 +151,6 @@ private fun ScreenText() { ), style = FirefoxTheme.typography.headline5, ) - - Text( - text = stringResource( - R.string.startup_crash_body, - stringResource(R.string.firefox), - ), - color = MaterialTheme.colorScheme.onSurfaceVariant, - style = FirefoxTheme.typography.body2, - textAlign = TextAlign.Center, - ) } } View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/068ab2f5... -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/068ab2f5... You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
participants (1)
-
Dan Ballard (@dan)