Status Update
Comments
de...@gmail.com <de...@gmail.com>
an...@google.com <an...@google.com> #2
This is a particularly hard device to come by - do you happen to have access to the device? If so could you provide us with the output of: adb shell dumpsys media.camera > info.txt
Thanks!
de...@gmail.com <de...@gmail.com> #3
Stacktrace:
Caused by: java.lang.IllegalArgumentException: Can not get supported output size under supported maximum for the format: 34
at androidx.camera.camera2.internal.SupportedSurfaceCombination.getSupportedOutputSizes(SupportedSurfaceCombination.java:355)
at androidx.camera.camera2.internal.SupportedSurfaceCombination.getSuggestedResolutions(SupportedSurfaceCombination.java:197)
at androidx.camera.camera2.internal.Camera2DeviceSurfaceManager.getSuggestedResolutions(Camera2DeviceSurfaceManager.java:198)
at androidx.camera.core.CameraX.calculateSuggestedResolutions(CameraX.java:943)
at androidx.camera.core.CameraX.bindToLifecycle(CameraX.java:293)
at androidx.camera.lifecycle.ProcessCameraProvider.bindToLifecycle(ProcessCameraProvider.java:227)
Below are some findings based on our debugging
When Dex is connected
previewConfig.getMaxResolution() is returning "731x411" as maxSize.
Inside Preview.Builder.build() -> Default_MAX_resolution is set to "CameraX.getSurfaceManager().getPreviewSize()" which is 731x411
this is being picked as maxSize.
While rendering maxSize is 731x411 and minSize is 640x480 and below are available outputSizes
0 = {Size@11860} "4032x3024"
1 = {Size@11861} "3984x2988"
2 = {Size@11862} "4032x2268"
3 = {Size@11863} "3024x3024"
4 = {Size@11864} "2976x2976"
5 = {Size@11865} "3840x2160"
6 = {Size@11866} "3264x2448"
7 = {Size@11867} "4032x1960"
8 = {Size@11868} "2880x2160"
9 = {Size@11869} "3264x1836"
10 = {Size@11870} "2160x2160"
11 = {Size@11871} "2560x1440"
12 = {Size@11872} "2224x1080"
13 = {Size@11873} "2048x1152"
14 = {Size@11874} "1920x1080"
15 = {Size@11875} "1440x1080"
16 = {Size@11876} "1088x1088"
17 = {Size@11877} "1280x720"
18 = {Size@11878} "1024x768"
19 = {Size@11879} "1056x704"
20 = {Size@11880} "960x720"
21 = {Size@11881} "960x540"
22 = {Size@11882} "720x720"
23 = {Size@11883} "800x450"
24 = {Size@11884} "720x480"
25 = {Size@11885} "640x480"
26 = {Size@11886} "352x288"
27 = {Size@11887} "320x240"
28 = {Size@11888} "256x144"
29 = {Size@11889} "176x144"
and couldn't find any size in this range.
When Dex not connected
minsize = 640x480
maxsize = 1920x1080
0 = {Size@11836} "4032x3024"
1 = {Size@11837} "3984x2988"
2 = {Size@11838} "4032x2268"
3 = {Size@11839} "3024x3024"
4 = {Size@11840} "2976x2976"
5 = {Size@11841} "3840x2160"
6 = {Size@11842} "3264x2448"
7 = {Size@11843} "4032x1960"
8 = {Size@11844} "2880x2160"
9 = {Size@11845} "3264x1836"
10 = {Size@11846} "2160x2160"
11 = {Size@11847} "2560x1440"
12 = {Size@11848} "2224x1080"
13 = {Size@11849} "2048x1152"
14 = {Size@11850} "1920x1080"
15 = {Size@11851} "1440x1080"
16 = {Size@11852} "1088x1088"
17 = {Size@11853} "1280x720"
18 = {Size@11854} "1024x768"
19 = {Size@11855} "1056x704"
20 = {Size@11856} "960x720"
21 = {Size@11857} "960x540"
22 = {Size@11858} "720x720"
23 = {Size@11859} "800x450"
24 = {Size@11860} "720x480"
25 = {Size@11861} "640x480"
26 = {Size@11862} "352x288"
27 = {Size@11863} "320x240"
28 = {Size@11864} "256x144"
29 = {Size@11865} "176x144"
and we have 12 available sizes in this range
Camera2DeviceSurfaceManager.java:: getPreviewSize()
mCameraSupportedSurfaceCombinationMap.get(cameraId).getSurfaceDefinition().getPreviewSize() = "1920x1080"
cameraId=0
an...@google.com <an...@google.com> #4
The issue root cause is that CameraX will default filter out sizes smaller than 640x480. For Preview, the max size will be limited to under display size. I checked the HW spec info for the issue related devices. Display size of FUJITSU F-04J/F-05J is 360x640. That will result int that no size exists in the conditions that is larger or equal to 640x480 and smaller or equal to 360x640.
A temporary workaround for this situation is to use Preview.Builder#setTargetResolution() to set a size smaller than 640x480 to bypass the problem.
For device FUJITSU arrowsM04, I checked its HW spec info and its display size I found is 1280x720. It seems that the problem should not exist in the device.
Could you confirm that the problem exist on arrowsM04 device? What will be the returned value when using Display#getRealSize to obtain the display size?
vi...@google.com <vi...@google.com> #5
> A temporary workaround for this situation is to use Preview.Builder#setTargetResolution() to set a size smaller than 640x480 to bypass the problem.
OK. I will try it.
> Could you confirm that the problem exist on arrowsM04 device?
We receive the crash report (Crashlytics) that this crash has occurred on arrowsM04.
We don't have this device so we can't confirm that the problem really exist on arrowsM04.
> What will be the returned value when using Display#getRealSize to obtain the display size?
We can't investigate it for the same reason.
Thank you.
al...@gmail.com <al...@gmail.com> #6
This issue happened on devices that the display size is smaller than 640x480. In original auto-resolution mechanism, supported sizes smaller than 640x480 will be default filter out.
The auto-resolution mechanism encodes the guaranteed configurations tables in CameraDevice#createCaptureSession(SessionConfiguration). It defines that the PREVIEW size is the small one of the device display size and 1080p. The PREVIEW size will be the maximal size limitation for Preview use case. The reason it limits the size to display size and 1080p is the stream output in display size or 1080p has been able to provide good enough preview quality. Therefore, auto-resolution mechanism will limit the selected size to be smaller than the small one of the device display size and 1080p.
With above two conditions, in this issue, all sizes smaller than 640x480 have been filter out, therefore, there is no size smaller than the display size 320x240 can be selected to use. And cause the exception.
Solution:
When the display size is smaller than 640x480, auto-resolution mechanism won't filter out those small sizes smaller than 640x480. This makes those small size be left and can be selected for the Preview use case on small display devices.
The solution has been merged and will be included in next CameraX release.
th...@gmail.com <th...@gmail.com> #7
Hello.
This crash still occurs.
- CAMERAX VERSION: 1.0.0-beta4
- ANDROID OS BUILD NUMBER: Android 7.1.1
- DEVICE NAME: FUJITSU F-02H
We receive following crash report from FUJITSU F-02H. So far We have received this crash report only from F-02H.
java.lang.IllegalArgumentException
Can not get supported output size under supported maximum for the format: 34
androidx.camera.camera2.internal.SupportedSurfaceCombination.getSupportedOutputSizes (SupportedSurfaceCombination.java:349)
androidx.camera.camera2.internal.SupportedSurfaceCombination.getSuggestedResolutions (SupportedSurfaceCombination.java:197)
androidx.camera.camera2.internal.Camera2DeviceSurfaceManager.getSuggestedResolutions (Camera2DeviceSurfaceManager.java:198)
androidx.camera.core.CameraX.calculateSuggestedResolutions (CameraX.java:949)
androidx.camera.core.CameraX.bindToLifecycle (CameraX.java:351)
androidx.camera.lifecycle.ProcessCameraProvider.bindToLifecycle (ProcessCameraProvider.java:230)
(our application's package name).CameraFragment.bindCameraUseCases (CameraFragment.java:174)
ti...@gmail.com <ti...@gmail.com> #8
Could you help to provide the following information to clarify the issue?
1. Is the full name of the device Fujitsu Arrows NX F-02H that has a 1440x2560 display?
2. Please help to provide the supported output sizes of ImageFormat.PRIVATE that is obtained by StreamConfigurationMap#getOutputSizes(int).
th...@gmail.com <th...@gmail.com> #9
- Is the full name of the device Fujitsu Arrows NX F-02H that has a 1440x2560 display?
Yes
- Please help to provide the supported output sizes of ImageFormat.PRIVATE that is obtained by StreamConfigurationMap#getOutputSizes(int).
Since we don't have this device, we'll try to collect this information in the next version of our app. The next version will be released later this month.
de...@gmail.com <de...@gmail.com> #10
Hello.
- Please help to provide the supported output sizes of ImageFormat.PRIVATE that is obtained by StreamConfigurationMap#getOutputSizes(int).
We have collected the output of the device where the crash occurs.
Device1
- Model : arrows Be F-05J
- Android Version : 7.1.1
- Supported output sizes of ImageFormat.PRIVATE
CameraId 0: 480x480
CameraId 1: 2048x1536 ,1920x1080 ,1280x720 ,960x720 ,640x480 ,320x240 ,176x144
Device2
- Model : Fujitsu arrows M04
- Android Version : 7.1.1
- Supported output sizes of ImageFormat.PRIVATE
CameraId 0: 480x480
CameraId 1: 2048x1536 ,1920x1080 ,1280x720 ,960x720 ,640x480 ,320x240 ,176x144
Additional Information
CameraX version : 1.0.0-beta04
We collect the supported output sizes by following code.
val errorString = buildString {
append("The supported output sizes of ImageFormat.PRIVATE: ")
(requireContext().getSystemService(Context.CAMERA_SERVICE) as CameraManager).apply {
cameraIdList.forEachIndexed { index, cameraId ->
val msg = if (VERSION.SDK_INT >= VERSION_CODES.M) {
val configurationMap =
getCameraCharacteristics(cameraId).get(CameraCharacteristics.SCALER_STREAM_CONFIGURATION_MAP)
val sizes = configurationMap?.getOutputSizes(ImageFormat.PRIVATE)
"CameraId $index: ${sizes?.joinToString(" ,")}"
} else {
"CameraId $index: This device version is under M."
}
append(msg)
}
}
}
vi...@gmail.com <vi...@gmail.com> #11
ga...@gmail.com <ga...@gmail.com> #12
I tried to find the device specs and both 720x1280
size display. For the camera id 0 device, it is a different case that the display size is larger than 640x480
but the device only supports a 480x480
size. The case also caused the same IllegalArgumentException and was also fixed by 1.0.0-beta04
release. Before 480x480
size would be filtered out and then caused the IllegalArgumentException. After it was merged, the 640x480
size threshold was removed and then the 480x480
size would be kept and selected to use.
It looks like 1.0.0-beta04
release had been used to collect the supported sizes information. But the issue should have been fixed by 1.0.0-beta04
release. Did you only check the device model name to collect the supported sizes information or collect the information when the IllegalArgumentException issue happens again?
CameraX's 1.0.0-beta04
version. Maybe you can also consider to upgrade to the latest 1.0.0-rc01
version for your application. Thanks.
ca...@gmail.com <ca...@gmail.com> #13
Did you only check the device model name to collect the supported sizes information or collect the information when the IllegalArgumentException issue happens again?
We collect informations only from the device on which IllegalArgumentException happened.
Our latest app uses CameraX version 1.0.0-beta10
and this issue still occurres.
However we don't receive crash report from Fujitsu arrows Be F-05J
or Fujitsu arrows M04
so far. (This doesn't mean this issue is fixed on these devices because our app is heavily rely on camera so these device's user wouldn't use our app anymore.)
Instead, we receive crash report from
- Model : Fujitsu F-03K
- Android Version : 7.1.2
- Supported output sizes of ImageFormat.PRIVATE
CameraId 0 : 480x480
CameraId 1 : 2048x1536 ,1920x1080 ,1280x720 ,960x720 ,640x480 ,320x240 ,176x144
ar...@gmail.com <ar...@gmail.com> #14
I missed some settings when I simulated the issue by robolectric test so that I was not able to reproduce it. Now, I can reproduce the issue if the device only supports one 480x480 resolution. I'm working on the solution and target to make it included in next release.
na...@gmail.com <na...@gmail.com> #15
Branch: androidx-main
commit 69d15dff7bb857ee33a0f643ff42a0f8bc475ab2
Author: charcoalchen <charcoalchen@google.com>
Date: Fri Jan 08 18:30:03 2021
Fixed IllegalArgumentException issue happened when all preview supported sizes are smaller than 640x480 and display size is larger than 640x480.
Do not filter out sizes smaller than 640x480 when all preview supported sizes are smaller than 640x480 and display size is larger than 640x480.
Relnote:"Fixed IllegalArgumentException issue happened when all preview supported sizes are smaller than 640x480 and display size is larger than 640x480."
Bug: 150506192
Test: SupportedSurfaceCombinationTest
Change-Id: I2a63ce8e2ad42a9cc060c8635ac3603bf440b1ec
M camera/camera-camera2/src/main/java/androidx/camera/camera2/internal/SupportedSurfaceCombination.java
M camera/camera-camera2/src/test/java/androidx/camera/camera2/internal/SupportedSurfaceCombinationTest.java
wo...@gmail.com <wo...@gmail.com> #16
st...@gmail.com <st...@gmail.com> #17
Thanks to
ri...@gmail.com <ri...@gmail.com> #18
What
More information
.
Where
Build and device data
- Build Number: google/husky_beta/husky:16/BP22.250221.010/13193326:user/release-keys
(Note: It is the build when sending this report. For exact build reference, please see the attached bugreport.)
- SoC Revision: Zuma B1
Debugging information
Google Play-Dienste
com.google.android.gms
Version 250832035 (25.08.32 (260400-731361394))
System App (Updated)
Android System WebView
com.google.android.webview
Version 704901443 (135.0.7049.14)
System App (Updated)
Network operator: Telekom.de
SIM operator: Telekom.de
Filed by Android Beta Feedback. Version (Updated): 2.46-betterbug.external_20241023_RC01 (DOGFOOD)
To learn more about our feedback process, please visit
mo...@gmail.com <mo...@gmail.com> #19
ga...@gmail.com <ga...@gmail.com> #20
qu...@gmail.com <qu...@gmail.com> #21
Possibly an issue with special characters? (à ä é ß, etc.)?
du...@gmail.com <du...@gmail.com> #22
What
More information
Only on German display language
Where
Build and device data
- Build Number: google/komodo_beta/komodo:16/BP22.250221.010/13193326:user/release-keys
(Note: It is the build when sending this report. For exact build reference, please see the attached bugreport.)
Debugging information
Google Play-Dienste
com.google.android.gms
Version 250832035 (25.08.32 (260400-731361394))
System App (Updated)
Android System WebView
com.google.android.webview
Version 704901443 (135.0.7049.14)
System App (Updated)
Network operator: o2 - de
SIM operator: o2 - de
Filed by Android Beta Feedback. Version (Updated): 2.46-betterbug.external_20241023_RC01 (DOGFOOD)
To learn more about our feedback process, please visit
an...@google.com <an...@google.com> #23
Information redacted by Android Beta Feedback.
ki...@gmail.com <ki...@gmail.com> #24
ju...@gmail.com <ju...@gmail.com> #25
ma...@gmail.com <ma...@gmail.com> #26
mo...@gmail.com <mo...@gmail.com> #27
Why no answer from Google?
Any method over adb? I am an android dev with good knowledge!
ma...@gmail.com <ma...@gmail.com> #29
What
More information
Forgot to mention that this issue occurs since I upgraded to Android 16 beta 3
Where
Build and device data
- Build Number: google/tokay_beta/tokay:16/BP22.250221.010/13193326:user/release-keys
(Note: It is the build when sending this report. For exact build reference, please see the attached bugreport.)
Debugging information
Services Google Play
com.google.android.gms
Version 250832035 (25.08.32 (260400-731361394))
System App (Updated)
Android System WebView
com.google.android.webview
Version 699803933 (134.0.6998.39)
System App (Updated)
Network operator: Wingo
SIM operator: Wingo
Filed by Android Beta Feedback. Version (Updated): 2.46-betterbug.external_20241023_RC01 (DOGFOOD)
To learn more about our feedback process, please visit
an...@google.com <an...@google.com> #30
Information redacted by Android Beta Feedback.
te...@gmail.com <te...@gmail.com> #31
I change system language from French to English, and now it works.
py...@gmail.com <py...@gmail.com> #32
Settings crashes immediately on system language German.
When switching to English it works again.
CarrierService keeps crashing
cc...@google.com <cc...@google.com> #33
cc...@google.com <cc...@google.com> #34
Hello All,
Thank you for reporting this issue, we have identified a fix that will be rolling out in an update next week.
In the meantime, you can change the language using Gemini:
Hold the power button for 2 seconds to launch Gemini
Say command "Launch language in system settings"
Change the language to English
de...@gmail.com <de...@gmail.com> #35
ba...@gmail.com <ba...@gmail.com> #36
What
More information
Pas d'accès à l'application paramètre
Where
Build and device data
- Build Number: google/husky_beta/husky:16/BP22.250221.010/13193326:user/release-keys
(Note: It is the build when sending this report. For exact build reference, please see the attached bugreport.)
- SoC Revision: Zuma B1
Debugging information
Services Google Play
com.google.android.gms
Version 250832035 (25.08.32 (260400-731361394))
System App (Updated)
Android System WebView
com.google.android.webview
Version 694313733 (133.0.6943.137)
System App (Updated)
Network operator: Orange B
SIM operator: Orange B
Network operator: Proximus
SIM operator: Proximus
Filed by Android Beta Feedback. Version (Updated): 2.46-betterbug.external_20241023_RC01 (DOGFOOD)
To learn more about our feedback process, please visit
da...@googlemail.com <da...@googlemail.com> #37
Pixel fold
Deutsche Sprache
da...@googlemail.com <da...@googlemail.com> #38
ec...@gmail.com <ec...@gmail.com> #39
If you have any Problem with Settings crashing you can reset your phone via Recovery and Start new with English US and just load your Backup wihtout Settings. My Settings are now Working.
fl...@gmail.com <fl...@gmail.com> #40
#39 Doing a factory reset will not solve the problem! If you are doing a factory reset just to change the phone language to be able to access the full phone settings, then it is better to just change the phone language without resetting the phone
st...@gmail.com <st...@gmail.com> #41
What
More information
Bitte dringend beheben man kommt nicht in die Einstellungen!
When
Time and frequency
Time when bug report was triggered: Mar 15, 2025 7:11 PM GMT+01:00
Where
Build and device data
- Build Number: google/lynx_beta/lynx:16/BP22.250221.010/13193326:user/release-keys
(Note: It is the build when sending this report. For exact build reference, please see the attached bugreport.)
Debugging information
Google Play-Dienste
com.google.android.gms
Version 250832035 (25.08.32 (260400-731361394))
System App (Updated)
Android System WebView
com.google.android.webview
Version 694313733 (133.0.6943.137)
System App (Updated)
Network operator: netzclub
SIM operator: netzclub
Network operator: Telekom.de
SIM operator: Telekom.de
Filed by Android Beta Feedback. Version (Updated): 2.46-betterbug.external_20241023_RC01 (DOGFOOD)
To learn more about our feedback process, please visit
an...@google.com <an...@google.com> #42
Information redacted by Android Beta Feedback.
me...@gmail.com <me...@gmail.com> #43
What
More information
By changing language to English, I've manage to open the setting app without any crash
Where
Build and device data
- Build Number: google/tokay_beta/tokay:16/BP22.250221.010/13193326:user/release-keys
(Note: It is the build when sending this report. For exact build reference, please see the attached bugreport.)
Debugging information
Google Play services
com.google.android.gms
Version 250832035 (25.08.32 (260400-731361394))
System App (Updated)
Android System WebView
com.google.android.webview
Version 704901443 (135.0.7049.14)
System App (Updated)
Network operator: Free
SIM operator: Free
Filed by Android Beta Feedback. Version (Updated): 2.46-betterbug.external_20241023_RC01 (DOGFOOD)
To learn more about our feedback process, please visit
an...@google.com <an...@google.com> #44
Information redacted by Android Beta Feedback.
sa...@gmail.com <sa...@gmail.com> #45
??
cl...@gmail.com <cl...@gmail.com> #46
sn...@gmail.com <sn...@gmail.com> #47
al...@gmail.com <al...@gmail.com> #48
What
More information
I'have found a solution. If switch the phone in English the app doesn't crash. The problem is only with the French language.
Where
Build and device data
- Build Number: google/oriole_beta/oriole:16/BP22.250221.010/13193326:user/release-keys
(Note: It is the build when sending this report. For exact build reference, please see the attached bugreport.)
Debugging information
Google Play services
com.google.android.gms
Version 250933035 (25.09.33 (260400-736501638))
System App (Updated)
Android System WebView
com.google.android.webview
Version 694313833 (133.0.6943.138)
System App (Updated)
Network operator: BYTEL
SIM operator: Bouygues Telecom
Network operator: Orange F
SIM operator: Orange F
Filed by Android Beta Feedback. Version (Updated): 2.46-betterbug.external_20241023_RC01 (DOGFOOD)
To learn more about our feedback process, please visit
an...@google.com <an...@google.com> #49
Information redacted by Android Beta Feedback.
da...@googlemail.com <da...@googlemail.com> #50
fr...@gmail.com <fr...@gmail.com> #51
da...@googlemail.com <da...@googlemail.com> #52
Play store => Activity Launcher
Search language
Open settings
Open language
Set English
This works for me
f....@gmail.com <f....@gmail.com> #53
What
More information
Screen record when Settings is closing when you try to open it
Where
Build and device data
- Build Number: google/cheetah_beta/cheetah:16/BP22.250221.010/13193326:user/release-keys
(Note: It is the build when sending this report. For exact build reference, please see the attached bugreport.)
Debugging information
Services Google Play
com.google.android.gms
Version 250962035 (25.09.62 (260400-736577381))
System App (Updated)
Android System WebView
com.google.android.webview
Version 704901443 (135.0.7049.14)
System App (Updated)
Network operator: yallo
SIM operator: yallo
Filed by Android Beta Feedback. Version (Updated): 2.46-betterbug.external_20241023_RC01 (DOGFOOD)
To learn more about our feedback process, please visit
an...@google.com <an...@google.com> #54
Information redacted by Android Beta Feedback.
vi...@google.com <vi...@google.com> #55
@
Android bug report (to be captured immediately after reproducing the issue)
For steps to capture a bug report, please refer:
Alternate method
Navigate to “Developer options”, ensure “USB debugging” is enabled, then enable “Bug report shortcut”. Capture bug report by holding the power button and selecting the “Take bug report” option.
Screen Record of the Issue by enabling show taps\
lo...@gmail.com <lo...@gmail.com> #56
Crash occurs when you enter the Settings app after the update.
The build version is BP22.250221.010.
no...@gmail.com <no...@gmail.com> #57
What
More information
Crashes everytime...but specific settings are accessable via Gemini
Where
Build and device data
- Build Number: google/tokay_beta/tokay:16/BP22.250221.010/13193326:user/release-keys
(Note: It is the build when sending this report. For exact build reference, please see the attached bugreport.)
Debugging information
Google Play-Dienste
com.google.android.gms
Version 250832035 (25.08.32 (260400-731361394))
System App (Updated)
Android System WebView
com.google.android.webview
Version 694313733 (133.0.6943.137)
System App (Updated)
Network operator: Telekom.de
SIM operator: Telekom.de
Filed by Android Beta Feedback. Version (Updated): 2.46-betterbug.external_20241023_RC01 (DOGFOOD)
To learn more about our feedback process, please visit
an...@google.com <an...@google.com> #58
Information redacted by Android Beta Feedback.
he...@gmail.com <he...@gmail.com> #59
What
More information
It works when i change my
Where
Build and device data
- Build Number: google/husky_beta/husky:16/BP22.250221.010/13193326:user/release-keys
(Note: It is the build when sending this report. For exact build reference, please see the attached bugreport.)
- SoC Revision: Zuma B1
Debugging information
Google Play services
com.google.android.gms
Version 250832035 (25.08.32 (260400-731361394))
System App (Updated)
Android System WebView
com.google.android.webview
Version 694313733 (133.0.6943.137)
System App (Updated)
Network operator:
SIM operator: congstar
Filed by Android Beta Feedback. Version (Updated): 2.46-betterbug.external_20241023_RC01 (DOGFOOD)
To learn more about our feedback process, please visit
an...@google.com <an...@google.com> #60
Information redacted by Android Beta Feedback.
gr...@gmail.com <gr...@gmail.com> #61
What
More information
It has not been fixed
Where
Build and device data
- Build Number: google/oriole_beta/oriole:16/BP22.250221.010/13193326:user/release-keys
(Note: It is the build when sending this report. For exact build reference, please see the attached bugreport.)
Debugging information
Services Google Play
com.google.android.gms
Version 250832035 (25.08.32 (260400-731361394))
System App (Updated)
Android System WebView
com.google.android.webview
Version 699803933 (134.0.6998.39)
System App (Updated)
Network operator: Free
SIM operator: Free
Filed by Android Beta Feedback. Version (Updated): 2.46-betterbug.external_20241023_RC01 (DOGFOOD)
To learn more about our feedback process, please visit
an...@google.com <an...@google.com> #62
Information redacted by Android Beta Feedback.
vv...@google.com <vv...@google.com> #63
Thank you for reporting this issue. We have a fix rolling out in an upcoming release.
ma...@gmail.com <ma...@gmail.com> #64
Or I use the workaround with widgets for settings like
tj...@gmail.com <tj...@gmail.com> #65
What
More information
Screen shot with language settings for default English completely messed up
Where
Build and device data
- Build Number: google/husky_beta/husky:16/BP22.250221.010/13193326:user/release-keys
(Note: It is the build when sending this report. For exact build reference, please see the attached bugreport.)
- SoC Revision: Zuma B1
Debugging information
Google Play services
com.google.android.gms
Version 250832035 (25.08.32 (260400-731361394))
System App (Updated)
Android System WebView
com.google.android.webview
Version 694313833 (133.0.6943.138)
System App (Updated)
Network operator: 3 UK
SIM operator: SFR
Filed by Android Beta Feedback. Version (Updated): 2.46-betterbug.external_20241023_RC01 (DOGFOOD)
To learn more about our feedback process, please visit
an...@google.com <an...@google.com> #66
Information redacted by Android Beta Feedback.
te...@gmail.com <te...@gmail.com> #67
What
More information
changing device language from german to english fixed the issue
Where
Build and device data
- Build Number: google/husky_beta/husky:16/BP22.250221.010/13193326:user/release-keys
(Note: It is the build when sending this report. For exact build reference, please see the attached bugreport.)
- SoC Revision: Zuma B1
Debugging information
Google Play services
com.google.android.gms
Version 250933035 (25.09.33 (260400-736501638))
System App (Updated)
Android System WebView
com.google.android.webview
Version 694313833 (133.0.6943.138)
System App (Updated)
Network operator: Magenta-T-
SIM operator: Magenta-T-
Filed by Android Beta Feedback. Version (Updated): 2.46-betterbug.external_20241023_RC01 (DOGFOOD)
To learn more about our feedback process, please visit
an...@google.com <an...@google.com> #68
Information redacted by Android Beta Feedback.
st...@gmail.com <st...@gmail.com> #69
What
More information
Problem solved with the last update. Thanks
Where
Build and device data
- Build Number: google/cheetah_beta/cheetah:16/BP22.250221.013/13218340:user/release-keys
(Note: It is the build when sending this report. For exact build reference, please see the attached bugreport.)
Debugging information
Services Google Play
com.google.android.gms
Version 250933035 (25.09.33 (260400-736501638))
System App (Updated)
Android System WebView
com.google.android.webview
Version 699803933 (134.0.6998.39)
System App (Updated)
Network operator: BYTEL
SIM operator: Bouygues Telecom
Network operator: Bouygues Telecom
SIM operator: Bouygues Telecom
Filed by Android Beta Feedback. Version (Updated): 2.46-betterbug.external_20241023_RC01 (DOGFOOD)
To learn more about our feedback process, please visit
an...@google.com <an...@google.com> #70
Information redacted by Android Beta Feedback.
le...@gmail.com <le...@gmail.com> #71
What
More information
To go to system, stay on settings, clic on widgets, on paramétrer clic add and choose system. An icon system will appear. You can choose update. To update the system.
Where
Build and device data
- Build Number: google/cheetah_beta/cheetah:16/BP22.250221.010/13193326:user/release-keys
(Note: It is the build when sending this report. For exact build reference, please see the attached bugreport.)
Debugging information
Services Google Play
com.google.android.gms
Version 250832035 (25.08.32 (260400-731361394))
System App (Updated)
Android System WebView
com.google.android.webview
Version 694313833 (133.0.6943.138)
System App (Updated)
Network operator: Free
SIM operator: Free
Filed by Android Beta Feedback. Version (Updated): 2.46-betterbug.external_20241023_RC01 (DOGFOOD)
To learn more about our feedback process, please visit
an...@google.com <an...@google.com> #72
Information redacted by Android Beta Feedback.
pe...@gmail.com <pe...@gmail.com> #73
What
More information
Correlated with system language setting. German -> problem vs English -> no problem.
Where
Build and device data
- Build Number: google/cheetah_beta/cheetah:16/BP22.250221.010/13193326:user/release-keys
(Note: It is the build when sending this report. For exact build reference, please see the attached bugreport.)
Debugging information
Google Play services
com.google.android.gms
Version 250832035 (25.08.32 (260400-731361394))
System App (Updated)
Android System WebView
com.google.android.webview
Version 699803933 (134.0.6998.39)
System App (Updated)
Network operator: T-Mobile A
SIM operator: T-Mobile A
Filed by Android Beta Feedback. Version (Updated): 2.46-betterbug.external_20241023_RC01 (DOGFOOD)
To learn more about our feedback process, please visit
an...@google.com <an...@google.com> #74
Information redacted by Android Beta Feedback.
de...@gmail.com <de...@gmail.com> #75
cb...@gmail.com <cb...@gmail.com> #76
What
More information
Bonjour, tout fonctionne normalement la dernière mise à jour a été efficace.
Where
Build and device data
- Build Number: google/panther_beta/panther:16/BP22.250221.013/13218340:user/release-keys
(Note: It is the build when sending this report. For exact build reference, please see the attached bugreport.)
Debugging information
Services Google Play
com.google.android.gms
Version 250832035 (25.08.32 (260400-731361394))
System App (Updated)
Android System WebView
com.google.android.webview
Version 699803933 (134.0.6998.39)
System App (Updated)
Network operator: BYTEL
SIM operator: Bouygues Telecom
Filed by Android Beta Feedback. Version (Updated): 2.46-betterbug.external_20241023_RC01 (DOGFOOD)
To learn more about our feedback process, please visit
an...@google.com <an...@google.com> #77
Information redacted by Android Beta Feedback.
na...@gmail.com <na...@gmail.com> #78
Hi
fi...@gmail.com <fi...@gmail.com> #79
What
More information
It is fixed now with recent update
When
Time and frequency
Time when bug report was triggered: Mar 27, 2025 9:18 AM GMT+01:00
Where
Build and device data
- Build Number: google/shiba_beta/shiba:16/BP22.250221.013/13218340:user/release-keys
(Note: It is the build when sending this report. For exact build reference, please see the attached bugreport.)
- SoC Revision: Zuma B1
Debugging information
Services Google Play
com.google.android.gms
Version 251064035 (25.10.64 (260400-740088529))
System App (Updated)
Android System WebView
com.google.android.webview
Version 699813533 (134.0.6998.135)
System App (Updated)
Network operator: BYTEL
SIM operator: Bouygues Telecom
Filed by Android Beta Feedback. Version (Updated): 2.46-betterbug.external_20241023_RC01 (DOGFOOD)
To learn more about our feedback process, please visit
fi...@gmail.com <fi...@gmail.com> #80
Information redacted by Android Beta Feedback.
Description
What
User experience
What type of Android issue is this?
User Interface
What steps would let us observe this issue?
What did you expect to happen?
Setting app opened
What actually happened?
It crashed
What was the effect of this issue on your device usage, such as lost time or work?
High
Additional comments
secure mode does not solve problem , neither does restart
When
Time and frequency
Time when bug report was triggered: Mar 13, 2025 7:53 PM GMT+01:00
How often has this happened?
Every time
Where
Component
Originating component: <not visible> (1684638)
Build and device data
- Build Number: google/komodo_beta/komodo:16/BP22.250221.010/13193326:user/release-keys
(Note: It is the build when sending this report. For exact build reference, please see the attached bugreport.)
Debugging information
Google Play-Dienste
com.google.android.gms
Version 250932035 (25.09.32 (260400-735486561))
System App (Updated)
Android System WebView
com.google.android.webview
Version 704901443 (135.0.7049.14)
System App (Updated)
Network operator: Telekom.de
SIM operator: Telekom.de
Filed by Android Beta Feedback. Version (Updated): 2.46-betterbug.external_20241023_RC01 (DOGFOOD)https://developer.android.com/preview/feedback#feedback-app .
To learn more about our feedback process, please visit