[Android Bug] App hangs indefinitely on "Continue with Google" due to CredentialManager deadlock on Android 17

Environment: Xiaomi 15, Android 17 (HyperOS 4 Beta), ChatGPT Android App v1.2026.230 Description: When tapping “Continue with Google”, the app attempts to invoke the Android CredentialManager API. However, due to a known OEM routing bug on this specific Android build (Invalid empty OEM component name logged by system), the Google sign-in bottom sheet never appears. The ChatGPT app lacks a timeout mechanism for this specific API call and waits indefinitely (silent hang) until the user manually triggers a swipe-back gesture to cancel the intent. Logcat Evidence: After manually swiping back, the logcat shows: CredentialManager: Cancellation invoked from the client - clearing session Suggested Fix: Please implement a timeout fallback mechanism for GetCredentialRequest. If CredentialManager fails to return a UI or result within 3-5 seconds, the app should gracefully degrade to the legacy CustomTabs/Browser OAuth flow to prevent UI deadlocks on buggy OEM ROMs.