Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Question] Firebase Auth on Android not redirecting back to the app (Intent Issue) #1175

Open
shubhank008 opened this issue Jan 21, 2025 · 2 comments

Comments

@shubhank008
Copy link

What is your question?

Pretty basic setup, using Apple as OAuth provider for Firebase Auth.
Testing on Android 14 phone, LG v30.

The app opens the apple.com webpage for login and I can login there successfully, but when its supposed to callback firebase URI or revert back to app, it fails to do so.
Earlier, it was automatically opening Playstore to search for my package/bundle code. So I disabled Playstore app to see what was happening.

Upon successful login, the browser redirects to the intent://firebase.auth/#Intent;scheme=genericidp;package=com.mydomain.app url but fails to redirect/open the app to handle it with error ERR_UNKNOWN_URL_SCHEME

I am pretty sure its related to the app/config not handling the intent as expected but I have tried everything I could find or think of in last 4 hours of googling around, yet nothing worked.

This is my Merged AndroidManifest.xml

`

<uses-sdk
    android:minSdkVersion="28"
    android:targetSdkVersion="34" />

<supports-screens
    android:anyDensity="true"
    android:largeScreens="true"
    android:normalScreens="true"
    android:smallScreens="true"
    android:xlargeScreens="true" />

<uses-permission android:name="android.permission.INTERNET" />

<uses-feature android:glEsVersion="0x00030000" />
<uses-feature
    android:name="android.hardware.touchscreen"
    android:required="false" />
<uses-feature
    android:name="android.hardware.touchscreen.multitouch"
    android:required="false" />
<uses-feature
    android:name="android.hardware.touchscreen.multitouch.distinct"
    android:required="false" />

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="com.android.vending.BILLING" />

<queries>
    <intent>
        <action android:name="com.android.vending.billing.InAppBillingService.BIND" />
    </intent>
</queries>

<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE" />
<uses-permission android:name="com.google.android.gms.permission.AD_ID" />
<uses-permission android:name="android.permission.ACCESS_ADSERVICES_ATTRIBUTION" />
<uses-permission android:name="android.permission.ACCESS_ADSERVICES_AD_ID" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />

<permission
    android:name="com.gamerzdan.unitytestgrounds.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION"
    android:protectionLevel="signature" />

<uses-permission android:name="com.gamerzdan.unitytestgrounds.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION" />

<application
    android:appComponentFactory="androidx.core.app.CoreComponentFactory"
    android:debuggable="true"
    android:enableOnBackInvokedCallback="false"
    android:extractNativeLibs="true"
    android:icon="@mipmap/app_icon"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/app_icon_round" >
    <meta-data
        android:name="unity.splash-mode"
        android:value="0" />
    <meta-data
        android:name="unity.splash-enable"
        android:value="True" />
    <meta-data
        android:name="unity.launch-fullscreen"
        android:value="True" />
    <meta-data
        android:name="unity.render-outside-safearea"
        android:value="True" />
    <meta-data
        android:name="notch.config"
        android:value="portrait|landscape" />
    <meta-data
        android:name="unity.auto-report-fully-drawn"
        android:value="true" />
    <meta-data
        android:name="unity.auto-set-game-state"
        android:value="true" />
    <meta-data
        android:name="unity.strip-engine-code"
        android:value="false" />

    <activity
        android:name="com.unity3d.player.UnityPlayerGameActivity"
        android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|uiMode|screenSize|smallestScreenSize|fontScale|layoutDirection|density"
        android:enabled="true"
        android:exported="true"
        android:hardwareAccelerated="false"
        android:launchMode="singleTask"
        android:resizeableActivity="true"
        android:screenOrientation="userLandscape"
        android:theme="@style/BaseUnityGameActivityTheme" >
        <intent-filter>
            <category android:name="android.intent.category.LAUNCHER" />

            <action android:name="android.intent.action.MAIN" />
        </intent-filter>

        <meta-data
            android:name="unityplayer.UnityActivity"
            android:value="true" />
        <meta-data
            android:name="android.app.lib_name"
            android:value="game" />
        <meta-data
            android:name="WindowManagerPreference:FreeformWindowSize"
            android:value="@string/FreeformWindowSize_maximize" />
        <meta-data
            android:name="WindowManagerPreference:FreeformWindowOrientation"
            android:value="@string/FreeformWindowOrientation_landscape" />
        <meta-data
            android:name="notch_support"
            android:value="true" />
    </activity>
    <activity
        android:name="com.google.firebase.auth.internal.GenericIdpActivity"
        android:excludeFromRecents="true"
        android:exported="true"
        android:launchMode="singleTask"
        android:theme="@android:style/Theme.Translucent.NoTitleBar" >
        <intent-filter>
            <action android:name="android.intent.action.VIEW" />

            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.BROWSABLE" />

            <data
                android:host="firebase.auth"
                android:path="/"
                android:scheme="genericidp" />
        </intent-filter>
    </activity>
    <activity
        android:name="com.google.firebase.auth.internal.RecaptchaActivity"
        android:excludeFromRecents="true"
        android:exported="true"
        android:launchMode="singleTask"
        android:theme="@android:style/Theme.Translucent.NoTitleBar" >
        <intent-filter>
            <action android:name="android.intent.action.VIEW" />

            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.BROWSABLE" />

            <data
                android:host="firebase.auth"
                android:path="/"
                android:scheme="recaptcha" />
        </intent-filter>
    </activity>

    <service
        android:name="com.google.firebase.components.ComponentDiscoveryService"
        android:directBootAware="true"
        android:exported="false" >
        <meta-data
            android:name="com.google.firebase.components:com.google.firebase.auth.FirebaseAuthRegistrar"
            android:value="com.google.firebase.components.ComponentRegistrar" />
        <meta-data
            android:name="com.google.firebase.components:com.google.firebase.analytics.connector.internal.AnalyticsConnectorRegistrar"
            android:value="com.google.firebase.components.ComponentRegistrar" />
        <meta-data
            android:name="com.google.firebase.components:com.google.firebase.ktx.FirebaseCommonLegacyRegistrar"
            android:value="com.google.firebase.components.ComponentRegistrar" />
        <meta-data
            android:name="com.google.firebase.components:com.google.firebase.installations.FirebaseInstallationsRegistrar"
            android:value="com.google.firebase.components.ComponentRegistrar" />
        <meta-data
            android:name="com.google.firebase.components:com.google.firebase.FirebaseCommonKtxRegistrar"
            android:value="com.google.firebase.components.ComponentRegistrar" />
    </service>
    <service
        android:name="androidx.credentials.playservices.CredentialProviderMetadataHolder"
        android:enabled="true"
        android:exported="false" >
        <meta-data
            android:name="androidx.credentials.CREDENTIAL_PROVIDER_KEY"
            android:value="androidx.credentials.playservices.CredentialProviderPlayServicesImpl" />
    </service>

    <activity
        android:name="androidx.credentials.playservices.HiddenActivity"
        android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"
        android:enabled="true"
        android:exported="false"
        android:fitsSystemWindows="true"
        android:theme="@style/Theme.Hidden" >
    </activity>
    <activity
        android:name="com.google.android.gms.auth.api.signin.internal.SignInHubActivity"
        android:excludeFromRecents="true"
        android:exported="false"
        android:theme="@android:style/Theme.Translucent.NoTitleBar" />
    <!--
        Service handling Google Sign-In user revocation. For apps that do not integrate with
        Google Sign-In, this service will never be started.
    -->
    <service
        android:name="com.google.android.gms.auth.api.signin.RevocationBoundService"
        android:exported="true"
        android:permission="com.google.android.gms.auth.api.signin.permission.REVOCATION_NOTIFICATION"
        android:visibleToInstantApps="true" />

    <meta-data
        android:name="com.google.android.play.billingclient.version"
        android:value="6.2.1" />

    <activity
        android:name="com.android.billingclient.api.ProxyBillingActivity"
        android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
        android:exported="false"
        android:theme="@android:style/Theme.Translucent.NoTitleBar" />
    <activity
        android:name="com.android.billingclient.api.ProxyBillingActivityV2"
        android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
        android:exported="false"
        android:theme="@android:style/Theme.Translucent.NoTitleBar" />

    <receiver
        android:name="com.google.android.gms.measurement.AppMeasurementReceiver"
        android:enabled="true"
        android:exported="false" >
    </receiver>

    <service
        android:name="com.google.android.gms.measurement.AppMeasurementService"
        android:enabled="true"
        android:exported="false" />
    <service
        android:name="com.google.android.gms.measurement.AppMeasurementJobService"
        android:enabled="true"
        android:exported="false"
        android:permission="android.permission.BIND_JOB_SERVICE" />

    <activity
        android:name="com.google.android.gms.common.api.GoogleApiActivity"
        android:exported="false"
        android:theme="@android:style/Theme.Translucent.NoTitleBar" />

    <property
        android:name="android.adservices.AD_SERVICES_CONFIG"
        android:resource="@xml/ga_ad_services_config" />

    <provider
        android:name="com.google.firebase.provider.FirebaseInitProvider"
        android:authorities="com.gamerzdan.unitytestgrounds.firebaseinitprovider"
        android:directBootAware="true"
        android:exported="false"
        android:initOrder="100" />

    <uses-library
        android:name="android.ext.adservices"
        android:required="false" />

    <meta-data
        android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version" />

    <provider
        android:name="androidx.startup.InitializationProvider"
        android:authorities="com.gamerzdan.unitytestgrounds.androidx-startup"
        android:exported="false" >
        <meta-data
            android:name="androidx.emoji2.text.EmojiCompatInitializer"
            android:value="androidx.startup" />
        <meta-data
            android:name="androidx.lifecycle.ProcessLifecycleInitializer"
            android:value="androidx.startup" />
    </provider>

    <service
        android:name="com.google.android.datatransport.runtime.backends.TransportBackendDiscovery"
        android:exported="false" >
        <meta-data
            android:name="backend:com.google.android.datatransport.cct.CctBackendFactory"
            android:value="cct" />
    </service>
    <service
        android:name="com.google.android.datatransport.runtime.scheduling.jobscheduling.JobInfoSchedulerService"
        android:exported="false"
        android:permission="android.permission.BIND_JOB_SERVICE" >
    </service>

    <receiver
        android:name="com.google.android.datatransport.runtime.scheduling.jobscheduling.AlarmManagerSchedulerBroadcastReceiver"
        android:exported="false" /> <!-- The activities will be merged into the manifest of the hosting app. -->
    <activity
        android:name="com.google.android.play.core.common.PlayCoreDialogWrapperActivity"
        android:exported="false"
        android:stateNotNeeded="true"
        android:theme="@style/Theme.PlayCore.Transparent" />
</application>

`

Firebase Unity SDK Version

12.5.0

Unity editor version

6.0000

Installation Method

.unitypackage

Problematic Firebase Component(s)

Authentication

Other Firebase Component(s) in use

No response

Additional SDKs you are using

No response

Targeted Platform(s)

Android

Unity editor platform

Windows

Scripting Runtime

IL2CPP

Release Distribution Type

Pre-built SDK from https://firebase.google.com/download/unity

@google-oss-bot
Copy link

I couldn't figure out how to label this issue, so I've labeled it for a human to triage. Hang tight.

@shubhank008
Copy link
Author

shubhank008 commented Jan 21, 2025

Some logs from logcat from when the browser opens for OAuth login and when it fails with the intent error

2025/01/21 21:39:29.442 6999 6999 Debug BoundBrokerSvc onBind: Intent { act=com.google.android.gms.feedback.internal.IFeedbackService dat=chimera-action:/... cmp=com.google.android.gms/.chimera.GmsBoundBrokerService }
2025/01/21 21:39:29.442 6999 6999 Debug BoundBrokerSvc Loading bound service for intent: Intent { act=com.google.android.gms.feedback.internal.IFeedbackService dat=chimera-action:/... cmp=com.google.android.gms/.chimera.GmsBoundBrokerService }
2025/01/21 21:39:43.281 1732 3828 Info ActivityTaskManager START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.gamerzdan.unitytestgrounds/com.unity3d.player.UnityPlayerGameActivity} with LAUNCH_SINGLE_TASK from uid 2000 (BAL_ALLOW_PERMISSION) result code=0
2025/01/21 21:39:43.284 2627 2660 Verbose WindowManagerShell Transition requested (#210): android.os.BinderProxy@d47ba3f TransitionRequestInfo { type = OPEN, triggerTask = TaskInfo{userId=0 taskId=98 displayId=0 isRunning=true baseIntent=Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.gamerzdan.unitytestgrounds/com.unity3d.player.UnityPlayerGameActivity } baseActivity=ComponentInfo{com.gamerzdan.unitytestgrounds/com.unity3d.player.UnityPlayerGameActivity} topActivity=ComponentInfo{com.gamerzdan.unitytestgrounds/com.unity3d.player.UnityPlayerGameActivity} origActivity=null realActivity=ComponentInfo{com.gamerzdan.unitytestgrounds/com.unity3d.player.UnityPlayerGameActivity} numActivities=1 lastActiveTime=341667825 supportsMultiWindow=true resizeMode=2 isResizeable=true minWidth=-1 minHeight=-1 defaultMinSize=220 token=WCT{android.window.IWindowContainerToken$Stub$Proxy@e03af0c} topActivityType=1 pictureInPictureParams=null shouldDockBigOverlays=false launchIntoPipHostTaskId=-1 lastParentTaskIdBeforePip=-1 displayCutoutSafeInsets=null topActivityInfo=ActivityInfo{62f6055 com.unity3d.player.UnityPlayerGameActivity} launchCookies=[] positionInParent=Point(0, 0) parentTaskId=-1 isFocused=false isVisible=false isVisibleRequested=false isSleeping=false locusId=null displayAreaFeatureId=1 isTopActivityTransparent=false appCompatTaskInfo=AppCompatTaskInfo { topActivityInSizeCompat=false topActivityEligibleForLetterboxEducation= false isLetterboxDoubleTapEnabled= false topActivityEligibleForUserAspectRatioButton= false topActivityBoundsLetterboxed= false isFromLetterboxDoubleTap= false topActivityLetterboxVerticalPosition= -1 topActivityLetterboxHorizontalPosition= -1 topActivityLetterboxWidth=1440 topActivityLetterboxHeight=2880 isUserFullscreenOverrideEnabled=false isSystemFullscreenOverrideEnabled=false cameraCompatControlState=hidden}}, pipTask = null, remoteTransition = null, displayChange = null, flags = 0, debugId = 210 }
2025/01/21 21:39:43.333 1732 1829 Verbose WindowManager Sent Transition (#210) createdAt=01-21 21:39:43.264 via request=TransitionRequestInfo { type = OPEN, triggerTask = TaskInfo{userId=0 taskId=98 displayId=0 isRunning=true baseIntent=Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.gamerzdan.unitytestgrounds/com.unity3d.player.UnityPlayerGameActivity } baseActivity=ComponentInfo{com.gamerzdan.unitytestgrounds/com.unity3d.player.UnityPlayerGameActivity} topActivity=ComponentInfo{com.gamerzdan.unitytestgrounds/com.unity3d.player.UnityPlayerGameActivity} origActivity=null realActivity=ComponentInfo{com.gamerzdan.unitytestgrounds/com.unity3d.player.UnityPlayerGameActivity} numActivities=1 lastActiveTime=341667825 supportsMultiWindow=true resizeMode=2 isResizeable=true minWidth=-1 minHeight=-1 defaultMinSize=220 token=WCT{RemoteToken{e170b10 Task{d9529c8 #98 type=standard A=10209:com.gamerzdan.unitytestgrounds}}} topActivityType=1 pictureInPictureParams=null shouldDockBigOverlays=false launchIntoPipHostTaskId=-1 lastParentTaskIdBeforePip=-1 displayCutoutSafeInsets=null topActivityInfo=ActivityInfo{733ba6b com.unity3d.player.UnityPlayerGameActivity} launchCookies=[] positionInParent=Point(0, 0) parentTaskId=-1 isFocused=false isVisible=false isVisibleRequested=false isSleeping=false locusId=null displayAreaFeatureId=1 isTopActivityTransparent=false appCompatTaskInfo=AppCompatTaskInfo { topActivityInSizeCompat=false topActivityEligibleForLetterboxEducation= false isLetterboxDoubleTapEnabled= false topActivityEligibleForUserAspectRatioButton= false topActivityBoundsLetterboxed= false isFromLetterboxDoubleTap= false topActivityLetterboxVerticalPosition= -1 topActivityLetterboxHorizontalPosition= -1 topActivityLetterboxWidth=1440 topActivityLetterboxHeight=2880 isUserFullscreenOverrideEnabled=false isSystemFullscreenOverrideEnabled=false cameraCompatControlState=hidden}}, pipTask = null, remoteTransition = null, displayChange = null, flags = 0, debugId = 210 }
2025/01/21 21:39:44.062 6999 6999 Debug BoundBrokerSvc onBind: Intent { act=com.google.android.gms.measurement.START pkg=com.google.android.gms }
2025/01/21 21:39:44.062 6999 6999 Debug BoundBrokerSvc Loading bound service for intent: Intent { act=com.google.android.gms.measurement.START pkg=com.google.android.gms }
2025/01/21 21:39:44.497 6999 6999 Debug BoundBrokerSvc onUnbind: Intent { act=com.google.android.gms.feedback.internal.IFeedbackService dat=chimera-action:/... cmp=com.google.android.gms/.chimera.GmsBoundBrokerService }
2025/01/21 21:39:54.258 6999 6999 Debug BoundBrokerSvc onUnbind: Intent { act=com.google.android.gms.measurement.START pkg=com.google.android.gms }
2025/01/21 21:39:59.254 6999 6999 Debug BoundBrokerSvc onUnbind: Intent { act=com.google.android.gms.inappreach.service.START dat=chimera-action:/... cmp=com.google.android.gms/.chimera.GmsApiService }
2025/01/21 21:40:31.564 2627 2660 Verbose WindowManagerShell Transition requested (#212): android.os.BinderProxy@a870d7c TransitionRequestInfo { type = OPEN, triggerTask = TaskInfo{userId=0 taskId=98 displayId=0 isRunning=true baseIntent=Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.gamerzdan.unitytestgrounds/com.unity3d.player.UnityPlayerGameActivity } baseActivity=ComponentInfo{com.gamerzdan.unitytestgrounds/com.unity3d.player.UnityPlayerGameActivity} topActivity=ComponentInfo{com.gamerzdan.unitytestgrounds/com.google.firebase.auth.internal.GenericIdpActivity} origActivity=null realActivity=ComponentInfo{com.gamerzdan.unitytestgrounds/com.unity3d.player.UnityPlayerGameActivity} numActivities=2 lastActiveTime=341716108 supportsMultiWindow=true resizeMode=2 isResizeable=true minWidth=-1 minHeight=-1 defaultMinSize=220 token=WCT{android.window.IWindowContainerToken$Stub$Proxy@b84b605} topActivityType=1 pictureInPictureParams=null shouldDockBigOverlays=false launchIntoPipHostTaskId=-1 lastParentTaskIdBeforePip=-1 displayCutoutSafeInsets=null topActivityInfo=ActivityInfo{3d5365a com.google.firebase.auth.internal.GenericIdpActivity} launchCookies=[] positionInParent=Point(0, 0) parentTaskId=-1 isFocused=true isVisible=true isVisibleRequested=true isSleeping=false locusId=null displayAreaFeatureId=1 isTopActivityTransparent=true appCompatTaskInfo=AppCompatTaskInfo { topActivityInSizeCompat=false topActivityEligibleForLetterboxEducation= false isLetterboxDoubleTapEnabled= false topActivityEligibleForUserAspectRatioButton= false topActivityBoundsLetterboxed= false isFromLetterboxDoubleTap= false topActivityLetterboxVerticalPosition= -1 topActivityLetterboxHorizontalPosition= -1 topActivityLetterboxWidth=2880 topActivityLetterboxHeight=1440 isUserFullscreenOverrideEnabled=false isSystemFullscreenOverrideEnabled=false cameraCompatControlState=hidden}}, pipTask = null, remoteTransition = null, displayChange = null, flags = 0, debugId = 212 }
2025/01/21 21:40:31.619 6999 6999 Debug BoundBrokerSvc onBind: Intent { act=com.google.android.gms.measurement.START pkg=com.google.android.gms }
2025/01/21 21:40:31.619 6999 6999 Debug BoundBrokerSvc Loading bound service for intent: Intent { act=com.google.android.gms.measurement.START pkg=com.google.android.gms }
2025/01/21 21:40:32.014 1732 1829 Verbose WindowManager Sent Transition (#212) createdAt=01-21 21:40:31.559 via request=TransitionRequestInfo { type = OPEN, triggerTask = TaskInfo{userId=0 taskId=98 displayId=0 isRunning=true baseIntent=Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.gamerzdan.unitytestgrounds/com.unity3d.player.UnityPlayerGameActivity } baseActivity=ComponentInfo{com.gamerzdan.unitytestgrounds/com.unity3d.player.UnityPlayerGameActivity} topActivity=ComponentInfo{com.gamerzdan.unitytestgrounds/com.google.firebase.auth.internal.GenericIdpActivity} origActivity=null realActivity=ComponentInfo{com.gamerzdan.unitytestgrounds/com.unity3d.player.UnityPlayerGameActivity} numActivities=2 lastActiveTime=341716108 supportsMultiWindow=true resizeMode=2 isResizeable=true minWidth=-1 minHeight=-1 defaultMinSize=220 token=WCT{RemoteToken{e170b10 Task{d9529c8 #98 type=standard A=10209:com.gamerzdan.unitytestgrounds}}} topActivityType=1 pictureInPictureParams=null shouldDockBigOverlays=false launchIntoPipHostTaskId=-1 lastParentTaskIdBeforePip=-1 displayCutoutSafeInsets=null topActivityInfo=ActivityInfo{6501ce0 com.google.firebase.auth.internal.GenericIdpActivity} launchCookies=[] positionInParent=Point(0, 0) parentTaskId=-1 isFocused=true isVisible=true isVisibleRequested=true isSleeping=false locusId=null displayAreaFeatureId=1 isTopActivityTransparent=true appCompatTaskInfo=AppCompatTaskInfo { topActivityInSizeCompat=false topActivityEligibleForLetterboxEducation= false isLetterboxDoubleTapEnabled= false topActivityEligibleForUserAspectRatioButton= false topActivityBoundsLetterboxed= false isFromLetterboxDoubleTap= false topActivityLetterboxVerticalPosition= -1 topActivityLetterboxHorizontalPosition= -1 topActivityLetterboxWidth=2880 topActivityLetterboxHeight=1440 isUserFullscreenOverrideEnabled=false isSystemFullscreenOverrideEnabled=false cameraCompatControlState=hidden}}, pipTask = null, remoteTransition = null, displayChange = null, flags = 0, debugId = 212 }
2025/01/21 21:40:32.808 1732 3829 Info ActivityTaskManager START u0 {act=android.intent.action.VIEW dat=https://unitytestgrounds.firebaseapp.com/... flg=0x50000000 cmp=org.lineageos.jelly/.MainActivity (has extras)} with LAUNCH_MULTIPLE from uid 10209 (BAL_ALLOW_VISIBLE_WINDOW) result code=0
2025/01/21 21:40:32.819 2627 2660 Verbose WindowManagerShell Transition requested (#213): android.os.BinderProxy@d491898 TransitionRequestInfo { type = OPEN, triggerTask = TaskInfo{userId=0 taskId=99 displayId=0 isRunning=true baseIntent=Intent { act=android.intent.action.VIEW dat=https://unitytestgrounds.firebaseapp.com/... flg=0x58080000 cmp=org.lineageos.jelly/.MainActivity } baseActivity=ComponentInfo{org.lineageos.jelly/org.lineageos.jelly.MainActivity} topActivity=ComponentInfo{org.lineageos.jelly/org.lineageos.jelly.MainActivity} origActivity=null realActivity=ComponentInfo{org.lineageos.jelly/org.lineageos.jelly.MainActivity} numActivities=1 lastActiveTime=341717352 supportsMultiWindow=true resizeMode=1 isResizeable=true minWidth=-1 minHeight=-1 defaultMinSize=220 token=WCT{android.window.IWindowContainerToken$Stub$Proxy@b2df8f1} topActivityType=1 pictureInPictureParams=null shouldDockBigOverlays=false launchIntoPipHostTaskId=-1 lastParentTaskIdBeforePip=-1 displayCutoutSafeInsets=null topActivityInfo=ActivityInfo{fd29cd6 org.lineageos.jelly.MainActivity} launchCookies=[] positionInParent=Point(0, 0) parentTaskId=-1 isFocused=false isVisible=false isVisibleRequested=false isSleeping=false locusId=null displayAreaFeatureId=1 isTopActivityTransparent=false appCompatTaskInfo=AppCompatTaskInfo { topActivityInSizeCompat=false topActivityEligibleForLetterboxEducation= false isLetterboxDoubleTapEnabled= false topActivityEligibleForUserAspectRatioButton= false topActivityBoundsLetterboxed= false isFromLetterboxDoubleTap= false topActivityLetterboxVerticalPosition= -1 topActivityLetterboxHorizontalPosition= -1 topActivityLetterboxWidth=2880 topActivityLetterboxHeight=1440 isUserFullscreenOverrideEnabled=false isSystemFullscreenOverrideEnabled=false cameraCompatControlState=hidden}}, pipTask = null, remoteTransition = null, displayChange = null, flags = 0, debugId = 213 }
2025/01/21 21:40:32.880 1732 1829 Verbose WindowManager Sent Transition (#213) createdAt=01-21 21:40:32.793 via request=TransitionRequestInfo { type = OPEN, triggerTask = TaskInfo{userId=0 taskId=99 displayId=0 isRunning=true baseIntent=Intent { act=android.intent.action.VIEW dat=https://unitytestgrounds.firebaseapp.com/... flg=0x58080000 cmp=org.lineageos.jelly/.MainActivity } baseActivity=ComponentInfo{org.lineageos.jelly/org.lineageos.jelly.MainActivity} topActivity=ComponentInfo{org.lineageos.jelly/org.lineageos.jelly.MainActivity} origActivity=null realActivity=ComponentInfo{org.lineageos.jelly/org.lineageos.jelly.MainActivity} numActivities=1 lastActiveTime=341717352 supportsMultiWindow=true resizeMode=1 isResizeable=true minWidth=-1 minHeight=-1 defaultMinSize=220 token=WCT{RemoteToken{c90e91e Task{c297c96 #99 type=standard A=10138:org.lineageos.jelly}}} topActivityType=1 pictureInPictureParams=null shouldDockBigOverlays=false launchIntoPipHostTaskId=-1 lastParentTaskIdBeforePip=-1 displayCutoutSafeInsets=null topActivityInfo=ActivityInfo{a5e792a org.lineageos.jelly.MainActivity} launchCookies=[] positionInParent=Point(0, 0) parentTaskId=-1 isFocused=false isVisible=false isVisibleRequested=false isSleeping=false locusId=null displayAreaFeatureId=1 isTopActivityTransparent=false appCompatTaskInfo=AppCompatTaskInfo { topActivityInSizeCompat=false topActivityEligibleForLetterboxEducation= false isLetterboxDoubleTapEnabled= false topActivityEligibleForUserAspectRatioButton= false topActivityBoundsLetterboxed= false isFromLetterboxDoubleTap= false topActivityLetterboxVerticalPosition= -1 topActivityLetterboxHorizontalPosition= -1 topActivityLetterboxWidth=2880 topActivityLetterboxHeight=1440 isUserFullscreenOverrideEnabled=false isSystemFullscreenOverrideEnabled=false cameraCompatControlState=hidden}}, pipTask = null, remoteTransition = null, displayChange = null, flags = 0, debugId = 213 }
2025/01/21 21:40:33.402 19943 19980 Warn cr_media registerBluetoothIntentsIfNeeded: Requires BLUETOOTH permission
2025/01/21 21:40:44.890 6999 6999 Debug BoundBrokerSvc onUnbind: Intent { act=com.google.android.gms.measurement.START pkg=com.google.android.gms }
2025/01/21 21:41:06.852 1732 6793 Info ActivityTaskManager START u0 {act=android.intent.action.VIEW cat=[android.intent.category.BROWSABLE] dat=market://search/...} with LAUNCH_MULTIPLE from uid 10138 result code=-91
2025/01/21 21:41:07.018 19943 20078 Debug SuggestionProvider java.io.FileNotFoundException: https://www.google.com/complete/search?client=android&oe=utf8&ie=utf8&cp=4&xssi=t&gs_pcrt=undefined&hl=en&q=intent%3A%2F%2Ffirebase.auth%2F%23intent%3Bscheme%3Dgenericidp%3Bpackage%3Dcom.gamerzdan.unitytestgrounds%3Bs.authtype%3Dsigninwithredirect%3Bs.eventid%3Da88c14a6-2da4-474a-9e11-b1bcaf7a36be%3Bs.link%3Dhttps%253a%252f%252funitytestgrounds.firebaseapp.com%252f__%252fauth%252fhandler%253fstate%253dambdmdlqtgcc0lnrlkf0dql4xqwz8dwwf-mrrlxp3paqokmdqlluwlm_z5bbmrjorak1jn8wvv20cfzgkhehtw8llw8igbnlylyldcai2b1whsqfzjoq1isavyd0tcz-xdo5npzdfcldjlk3w_ekhk3ml07aerjjozrykt1ckamr9tjlfmhflkq3avziufvjpc4cgp3-lbfyynwmfh8mroyshdpgzz_9_ecfigzogce5i7c9hxm7lhxlogudcreuyuoxsmstzytgrlegapmhab-duyt2pvdkmoslg2agkvnc-t5yohww8zd4pkma_jlnpfnlqf_6ef2b6vjvtzms_h_8i_s2wgfcy5qohogftp6l1esvigm4la%2526code%253dc87a251b3566c44f7b13cfd5e98360f51.0.sxru.b9yjy1hxnwahng2t3kjsiw%3Bb.encryptionenabled%3Dfalse%3Bs.browser_fallback_url%3Dhttps%253a%252f%252funitytestgrounds.firebaseapp.com%252f__%252fauth%252fhandler%3Bend%3B

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants