it is on the first screen, the one shaped like a cog at upper right. when I click it I get a white page and an android message saying tor browser stopped working and when I click ok on that message tor browser crashes.
I tried reproducing this on an Android 6.0 emulator, emulating both x86 and armv7 architectures. The app didn't crash when clicking on the settings cog during either test. It sounds like the crash is occurring during the transition between the bootstrapping screen (using the BrowserApp as the Activity) to the first preferences screen (using the TorPreferences Activity).
There aren't too many places where this can crash within the app code (verses within system code), however we are making some assumption about variables and return values being non-null in the TorPreferences code. Maybe some of those assumptions are wrong, and the code should correctly handle these. I'll fix these potential issues, at least.
We believe this is fixed with commit fd7cccb3f4a908ff38edfefc36b194666c886f69 on tor-browser-60.6.1esr-8.5-1 and will be available in the next alpha release (8.5a11). If you still see the crashes with that version, please reopen the ticket.
Trac: Resolution: N/Ato fixed Status: needs_information to closed
[...] the tor settings page is white and torbrowser freezes. not a significantdifference, I only have to terminate torbrowser manually now when its stuck inthat white page.
I wonder if #30214 (moved) is the underlying bug of this.
Quoting from the blog comment:
{{{
[...] the tor settings page is white and torbrowser freezes. not a significant
difference, I only have to terminate torbrowser manually now when its stuck in
that white page.
}}}
I wonder if #30214 (moved) is the underlying bug of this.
Does not seem to be the case. Recent nightlies still seem to have this problem. I try to get more debug information.
Indeed. This was a simple and silly bug. When using an older Android versions on a tablet (or other large-screen device), Android tries creating a preference "flow", where it first shows a panel containing only headers (title and summary), then the user selects one of the headers and Android shows the real preference screen. We didn't implement the initial headers screen because it wasn't part of our goal (we really only targeted smaller devices, too).
On newer versions of Android, the preferences are shown regardless of whether the headers are defined (so it handles our implementation well enough). On older versions of Android, I assume the user is shown all the defined headers - in our case, there are zero headers and therefore a blank screen is shown. This patch tells Android it should skip the headers and go straight to the fragment we define on the line above it.
Indeed. This was a simple and silly bug. When using an older Android versions on a tablet (or other large-screen device), Android tries creating a preference "flow", where it first shows a panel containing only headers (title and summary), then the user selects one of the headers and Android shows the real preference screen. We didn't implement the initial headers screen because it wasn't part of our goal (we really only targeted smaller devices, too).
On newer versions of Android, the preferences are shown regardless of whether the headers are defined (so it handles our implementation well enough). On older versions of Android, I assume the user is shown all the defined headers - in our case, there are zero headers and therefore a blank screen is shown. This patch tells Android it should skip the headers and go straight to the fragment we define on the line above it.
Branch bug29982 in my repo.
Nice find! The change looks good to me and I applied it tor tor-browser-60.6.1esr-8.5-1 (commit 6a6052976627429027602a3b6871f0ae37aaa36d) and tor-browser-60.6.1esr-9.0-1 (commit b914bb89ff0d07765c29a11ead947315f1e6d054).
Trac: Status: needs_review to closed Resolution: N/Ato fixed