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

Consent Form Not Shown in Build Despite DebugGeography Set to EEA #3726

Open
PeakShredder opened this issue Feb 14, 2025 · 2 comments
Open

Comments

@PeakShredder
Copy link

[REQUIRED] Step 1: Describe your environment

  • Unity version:
  • Google Mobile Ads Unity plugin version: 6000.0.38f1
  • Plugin installation method: .unitypackage import)
  • Platform: Android 15, Unity Editor
  • Platform OS version: Android 15

[REQUIRED] Step 2: Describe the problem

I have implemented the consent form using the LoadAndShowConsentFormIfRequired function. In the Editor, the consent form shows up correctly. However, when I try to manually open the form using ShowPrivacyOptionsForm, I receive the following error:
Failed to show consent privacy form with error: Form not found!
(Note: This error is secondary to the main issue.)

Main Issue:

When I build the app and run it on my device, the consent form is not displayed. Instead, the app reports that consent is not required, which seems incorrect because:

  1. DebugGeography is set to DebugGeography.EEA
  2. Location: I am living in Germany, which is part of the EEA region.

Steps to Reproduce:

  1. Set DebugGeography to DebugGeography.EEA.
  2. Build and deploy the app to a device located in Germany.
  3. Observe that the consent form does not appear on startup, and the app indicates that consent is not required.

Additional Debug Information:

  • Function in Use: Currently using a debug function (please include the specific code snippet if necessary).
  • Expected Behavior: The consent form should appear on devices within the EEA.
  • Observed Behavior: The consent form is not displayed, and the app incorrectly reports that consent is not required.
  • Editor vs. Build: The consent form appears in the Editor when using LoadAndShowConsentFormIfRequired, but fails to show with ShowPrivacyOptionsForm (error: "Form not found!")—though this seems to be a separate issue.

Request:

Can someone help clarify why the build version does not trigger the consent form, even though the DebugGeography is set to EEA and the device is in Germany? Any insight or suggestions for further debugging would be greatly appreciated.


using System.Collections.Generic;
using UnityEngine;
using GoogleMobileAds.Ump.Api;
using GoogleMobileAds.Api;
using System;

public class AdConsentManager : MonoBehaviour
{
    // Start is called before the first frame update.
    void Start()
    {
        requestConsent();
    }

    public void requestConsent()
    {
        // Create consent request parameters.
        ConsentRequestParameters request = new ConsentRequestParameters
        {
            // False means users are not under age.
            TagForUnderAgeOfConsent = false,

            ConsentDebugSettings = new ConsentDebugSettings
            {
                // For debugging consent settings by geography.
                DebugGeography = DebugGeography.EEA,

                TestDeviceHashedIds = new List<string>
                {
                    AdRequest.TestDeviceSimulator,
                    "41CD20BE4B989DAC81F4CFF067C32C44",
                    "YOUR_TEST_DEVICE_ID",
                }

            }
        };

        if (ConsentInformation.ConsentStatus == ConsentStatus.Required)
        {
            Debug.LogWarning("required");
        }
        else
        {
            Debug.LogWarning("not required");
        }


        // Update the consent information status.
        ConsentInformation.Update(request, OnConsentInfoUpdated);
    }


    // Callback once the consent information has been updated.
    void OnConsentInfoUpdated(FormError consentError)
    {
        if (consentError != null)
        {
            Debug.LogError("Consent info update failed: " + consentError.Message);
            return;
        }

        Debug.Log("Consent info updated successfully. Current consent status: " + ConsentInformation.ConsentStatus);

        // Load and show the consent form if required.
        ConsentForm.LoadAndShowConsentFormIfRequired((FormError formError) =>
        {
            if (formError != null)
            {
                Debug.LogError("Consent form load/show failed: " + formError.Message);
                return;
            }

            // At this point, consent has been gathered (or wasn't required).
            Debug.Log("Consent form displayed successfully or not required.");
        });
    }

    public void ResetConsent()
    {
        // Optionally, reset stored consent so the form will be shown again.
        ConsentInformation.Reset();
        Debug.Log("Consent information has been reset.");

        requestConsent();

    }

    /// <summary>
    /// Shows the privacy options form to the user.
    /// </summary>
    /// <remarks>
    /// Your app needs to allow the user to change their consent status at any time.
    /// Load another form and store it to allow the user to change their consent status
    /// </remarks>
    public void ShowPrivacyOptionsForm(Action<string> onComplete)
    {
        Debug.Log("Showing privacy options form.");

        // combine the callback with an error popup handler.
        onComplete = (onComplete == null)
            ? UpdateErrorPopup
            : onComplete + UpdateErrorPopup;

        ConsentForm.ShowPrivacyOptionsForm((FormError showError) =>
        {
            //UpdatePrivacyButton();
            if (showError != null)
            {
                // Form showing failed.
                if (onComplete != null)
                {
                    onComplete(showError.Message);
                }
            }
            // Form showing succeeded.
            else if (onComplete != null)
            {
                onComplete(null);
            }
        });
    }

    /// <summary>
    /// Opens the privacy options form for the user.
    /// </summary>
    /// <remarks>
    /// Your app needs to allow the user to change their consent status at any time.
    /// </remarks>
    public void OpenPrivacyOptions()
    {
        ShowPrivacyOptionsForm((string error) =>
        {
            if (error != null)
            {
                Debug.LogError("Failed to show consent privacy form with error: " +
                    error);
            }
            else
            {
                Debug.Log("Privacy form opened successfully.");
            }
        });
    }

    void UpdateErrorPopup(string message)
    {
        if (string.IsNullOrEmpty(message))
        {
            return;
        }
        /*
        if (_errorText != null)
        {
            _errorText.text = message;
        }

        if (_errorPopup != null)
        {
            _errorPopup.SetActive(true);
        }
        if (_privacyButton != null)
        {
            _privacyButton.interactable = true;
        }
        */
    }
}

LogCat:

/0001.01.01 00:00:00.000 -1 -1 Info  --------- beginning of main
2025.02.14 14:16:34.184 7190 7190 Info mplate.mobile2D Using CollectorTypeCMC GC.
2025.02.14 14:16:34.187 7190 7190 Error mplate.mobile2D Not starting debugger since process cannot load the jdwp agent.
2025.02.14 14:16:34.189 7190 7190 Debug nativeloader Load libframework-connectivity-tiramisu-jni.so using APEX ns com_android_tethering for caller /apex/com.android.tethering/javalib/framework-connectivity-t.jar: ok
2025.02.14 14:16:34.200 7190 7190 Debug ApplicationLoaders Returning zygote-cached class loader: /system/framework/org.apache.http.legacy.jar
2025.02.14 14:16:34.202 7190 7190 Debug nativeloader Configuring clns-7 for other apk /data/app/~~qy2G5qUtVD0jOTpsXsBZTw==/com.DefaultCompany.com.unity.template.mobile2D-OtbN1RrjI5LdQyIG5I3HaQ==/base.apk. target_sdk_version=35, uses_libraries=, library_path=/data/app/~~qy2G5qUtVD0jOTpsXsBZTw==/com.DefaultCompany.com.unity.template.mobile2D-OtbN1RrjI5LdQyIG5I3HaQ==/lib/arm64:/data/app/~~qy2G5qUtVD0jOTpsXsBZTw==/com.DefaultCompany.com.unity.template.mobile2D-OtbN1RrjI5LdQyIG5I3HaQ==/base.apk!/lib/arm64-v8a, permitted_path=/data:/mnt/expand:/data/user/0/com.DefaultCompany.com.unity.template.mobile2D
2025.02.14 14:16:34.202 7190 7190 Debug CompatChangeReporter Compat change id reported: 202956589; UID 10010; state: ENABLED
2025.02.14 14:16:34.205 7190 7190 Verbose GraphicsEnvironment Currently set values for:
2025.02.14 14:16:34.206 7190 7190 Verbose GraphicsEnvironment   angle_gl_driver_selection_pkgs=[com.android.angle, com.linecorp.b612.android, com.campmobile.snow, com.google.android.apps.tachyon]
2025.02.14 14:16:34.206 7190 7190 Verbose GraphicsEnvironment   angle_gl_driver_selection_values=[angle, native, native, native]
2025.02.14 14:16:34.206 7190 7190 Verbose GraphicsEnvironment com.DefaultCompany.com.unity.template.mobile2D is not listed in per-application setting
2025.02.14 14:16:34.206 7190 7190 Verbose GraphicsEnvironment Neither updatable production driver nor prerelease driver is supported.
2025.02.14 14:16:34.210 7190 7190 Debug WM-WrkMgrInitializer Initializing WorkManager with default configuration.
2025.02.14 14:16:34.212 7190 7209 Debug ApplicationLoaders Returning zygote-cached class loader: /system/framework/org.apache.http.legacy.jar
2025.02.14 14:16:34.215 7190 7190 Debug CompatChangeReporter Compat change id reported: 279646685; UID 10010; state: ENABLED
2025.02.14 14:16:34.215 7190 7209 Debug nativeloader Configuring clns-8 for other apk /system/framework/com.android.media.remotedisplay.jar. target_sdk_version=35, uses_libraries=ALL, library_path=/data/app/~~wkzHQsI3a3EvcgYEnHpY8A==/com.google.android.gms-ePEaGtswBjzGhaP4E8bpZg==/lib/arm64:/data/app/~~wkzHQsI3a3EvcgYEnHpY8A==/com.google.android.gms-ePEaGtswBjzGhaP4E8bpZg==/base.apk!/lib/arm64-v8a, permitted_path=/data:/mnt/expand:/data/user/0/com.google.android.gms
2025.02.14 14:16:34.215 7190 7209 Debug nativeloader Extending system_exposed_libraries: libedgetpu_dba.google.so
2025.02.14 14:16:34.219 7190 7209 Debug nativeloader Configuring clns-9 for other apk /system/framework/com.android.location.provider.jar. target_sdk_version=35, uses_libraries=ALL, library_path=/data/app/~~wkzHQsI3a3EvcgYEnHpY8A==/com.google.android.gms-ePEaGtswBjzGhaP4E8bpZg==/lib/arm64:/data/app/~~wkzHQsI3a3EvcgYEnHpY8A==/com.google.android.gms-ePEaGtswBjzGhaP4E8bpZg==/base.apk!/lib/arm64-v8a, permitted_path=/data:/mnt/expand:/data/user/0/com.google.android.gms
2025.02.14 14:16:34.219 7190 7209 Debug nativeloader Extending system_exposed_libraries: libedgetpu_dba.google.so
2025.02.14 14:16:34.219 7190 7209 Debug ApplicationLoaders Returning zygote-cached class loader: /system_ext/framework/androidx.window.extensions.jar
2025.02.14 14:16:34.219 7190 7209 Debug ApplicationLoaders Returning zygote-cached class loader: /system_ext/framework/androidx.window.sidecar.jar
2025.02.14 14:16:34.225 7190 7190 Debug nativeloader Load /data/app/~~qy2G5qUtVD0jOTpsXsBZTw==/com.DefaultCompany.com.unity.template.mobile2D-OtbN1RrjI5LdQyIG5I3HaQ==/lib/arm64/libgame.so using ns clns-7 from class loader (caller=/data/app/~~qy2G5qUtVD0jOTpsXsBZTw==/com.DefaultCompany.com.unity.template.mobile2D-OtbN1RrjI5LdQyIG5I3HaQ==/base.apk!classes3.dex): ok
2025.02.14 14:16:34.227 7190 7190 Debug AppCompatDelegate Checking for metadata for AppLocalesMetadataHolderService : Service not found
2025.02.14 14:16:34.239 7190 7190 Debug gti.InputConnection InputConnection created
2025.02.14 14:16:34.239 7190 7209 Debug nativeloader Configuring clns-10 for other apk /data/app/~~wkzHQsI3a3EvcgYEnHpY8A==/com.google.android.gms-ePEaGtswBjzGhaP4E8bpZg==/base.apk. target_sdk_version=35, uses_libraries=, library_path=/data/app/~~wkzHQsI3a3EvcgYEnHpY8A==/com.google.android.gms-ePEaGtswBjzGhaP4E8bpZg==/lib/arm64:/data/app/~~wkzHQsI3a3EvcgYEnHpY8A==/com.google.android.gms-ePEaGtswBjzGhaP4E8bpZg==/base.apk!/lib/arm64-v8a, permitted_path=/data:/mnt/expand:/data/user/0/com.google.android.gms
2025.02.14 14:16:34.241 7190 7190 Debug CompatChangeReporter Compat change id reported: 309578419; UID 10010; state: ENABLED
2025.02.14 14:16:34.242 7190 7190 Debug DesktopModeFlagsUtil Toggle override initialized to: OVERRIDE_UNSET
2025.02.14 14:16:34.246 7190 7219 Warn DynamiteModule Local module descriptor class for com.google.android.gms.measurement.dynamite not found.
2025.02.14 14:16:34.250 7190 7190 Debug nativeloader Load /data/app/~~qy2G5qUtVD0jOTpsXsBZTw==/com.DefaultCompany.com.unity.template.mobile2D-OtbN1RrjI5LdQyIG5I3HaQ==/lib/arm64/libmain.so using ns clns-7 from class loader (caller=/data/app/~~qy2G5qUtVD0jOTpsXsBZTw==/com.DefaultCompany.com.unity.template.mobile2D-OtbN1RrjI5LdQyIG5I3HaQ==/base.apk!classes3.dex): ok
2025.02.14 14:16:34.266 7190 7190 Info IL2CPP JNI_OnLoad
2025.02.14 14:16:34.266 7190 7190 Verbose Unity Context Type: GameActivity
2025.02.14 14:16:34.266 7190 7209 Warn mplate.mobile2D ClassLoaderContext classpath size mismatch. expected=1, found=0 (DLC[];PCL[base.apk*233084632]{PCL[/system/framework/org.apache.http.legacy.jar*2780533809]#PCL[/system/framework/com.android.media.remotedisplay.jar*1110477037]#PCL[/system/framework/com.android.location.provider.jar*3196002273]#PCL[/system_ext/framework/androidx.window.extensions.jar*2571268766]#PCL[/system_ext/framework/androidx.window.sidecar.jar*582891276]} | DLC[];PCL[])
2025.02.14 14:16:34.268 7190 7209 Info DynamiteModule Considering local module com.google.android.gms.ads.dynamite:0 and remote module com.google.android.gms.ads.dynamite:244410203
2025.02.14 14:16:34.268 7190 7209 Info DynamiteModule Selected remote version of com.google.android.gms.ads.dynamite, version >= 244410203
2025.02.14 14:16:34.268 7190 7209 Verbose DynamiteModule Dynamite loader version >= 2, using loadModule2NoCrashUtils
2025.02.14 14:16:34.269 7190 7190 Warn WindowOnBackDispatcher OnBackInvokedCallback is not enabled for the application.
2025.02.14 14:16:34.269 7190 7190 Warn WindowOnBackDispatcher Set 'android:enableOnBackInvokedCallback="true"' in the application manifest.
2025.02.14 14:16:34.269 7190 7190 Info GameActivity Looking for library libgame.so
2025.02.14 14:16:34.269 7190 7190 Info GameActivity Found library libgame.so. Loading...
2025.02.14 14:16:34.269 7190 7219 Info DynamiteModule Considering local module com.google.android.gms.measurement.dynamite:0 and remote module com.google.android.gms.measurement.dynamite:137
2025.02.14 14:16:34.269 7190 7219 Info DynamiteModule Selected remote version of com.google.android.gms.measurement.dynamite, version >= 137
2025.02.14 14:16:34.269 7190 7219 Verbose DynamiteModule Dynamite loader version >= 2, using loadModule2NoCrashUtils
2025.02.14 14:16:34.270 7190 7190 Debug GameActivity GameActivity_register
2025.02.14 14:16:34.270 7190 7190 Debug GameActivity SDK version: 35
2025.02.14 14:16:34.271 7190 7223 Info Unity UnityApplication::CreateInstance
2025.02.14 14:16:34.271 7190 7223 Info Unity GameActivity Package Version '3.0.5'
2025.02.14 14:16:34.271 7190 7223 Info Unity Starting Game Loop
2025.02.14 14:16:34.272 7190 7209 Warn System ClassLoader referenced unknown path: 
2025.02.14 14:16:34.272 7190 7209 Debug nativeloader Configuring clns-11 for other apk . target_sdk_version=35, uses_libraries=, library_path=/data/app/~~wkzHQsI3a3EvcgYEnHpY8A==/com.google.android.gms-ePEaGtswBjzGhaP4E8bpZg==/lib/arm64:/data/app/~~wkzHQsI3a3EvcgYEnHpY8A==/com.google.android.gms-ePEaGtswBjzGhaP4E8bpZg==/base.apk!/lib/arm64-v8a, permitted_path=/data:/mnt/expand:/data/user/0/com.google.android.gms
2025.02.14 14:16:34.276 7190 7219 Warn mplate.mobile2D ClassLoaderContext classpath element checksum mismatch. expected=233084632, found=4258153704 (DLC[];PCL[base.apk*233084632]{PCL[/system/framework/org.apache.http.legacy.jar*2780533809]#PCL[/system/framework/com.android.media.remotedisplay.jar*1110477037]#PCL[/system/framework/com.android.location.provider.jar*3196002273]#PCL[/system_ext/framework/androidx.window.extensions.jar*2571268766]#PCL[/system_ext/framework/androidx.window.sidecar.jar*582891276]} | DLC[];PCL[/data/app/~~qy2G5qUtVD0jOTpsXsBZTw==/com.DefaultCompany.com.unity.template.mobile2D-OtbN1RrjI5LdQyIG5I3HaQ==/base.apk*4258153704]{PCL[/system/framework/org.apache.http.legacy.jar*2780533809]})
2025.02.14 14:16:34.276 7190 7223 Info Unity Handle cmd APP_CMD_START(11)
2025.02.14 14:16:34.277 7190 7190 Info ContentCaptureHelper Setting logging level to OFF
2025.02.14 14:16:34.281 7190 7209 Debug CompatChangeReporter Compat change id reported: 312399441; UID 10010; state: ENABLED
2025.02.14 14:16:34.282 7190 7219 Warn DynamiteModule Local module descriptor class for com.google.android.gms.measurement.dynamite not found.
2025.02.14 14:16:34.283 7190 7223 Info Unity Handle cmd APP_CMD_RESUME(12)
2025.02.14 14:16:34.285 7190 7190 Debug CompatChangeReporter Compat change id reported: 349153669; UID 10010; state: ENABLED
2025.02.14 14:16:34.285 7190 7209 Warn mplate.mobile2D ClassLoaderContext type mismatch. expected=PCL, found=DLC (PCL[] | DLC[];PCL[/data/app/~~qy2G5qUtVD0jOTpsXsBZTw==/com.DefaultCompany.com.unity.template.mobile2D-OtbN1RrjI5LdQyIG5I3HaQ==/base.apk*4258153704]{PCL[/system/framework/org.apache.http.legacy.jar*2780533809]})
2025.02.14 14:16:34.291 7190 7223 Info Unity Handle cmd APP_CMD_PAUSE(14)
2025.02.14 14:16:34.297 7190 7225 Info FA-Ads App measurement initialized, version: 115006
2025.02.14 14:16:34.297 7190 7225 Info FA-Ads To enable debug logging run: adb shell setprop log.tag.FA VERBOSE
2025.02.14 14:16:34.302 7190 7190 Debug gti.InputConnection onApplyWindowInsetsfalse
2025.02.14 14:16:34.302 7190 7190 Verbose GameActivity onImeInsetsChanged from Text Listener
2025.02.14 14:16:34.303 7190 7223 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025.02.14 14:16:34.309 7190 7190 Debug gti.InputConnection onApplyWindowInsetsfalse
2025.02.14 14:16:34.309 7190 7190 Verbose GameActivity onImeInsetsChanged from Text Listener
2025.02.14 14:16:34.309 7190 7223 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025.02.14 14:16:34.309 7190 7190 Debug gti.InputConnection onApplyWindowInsetsfalse
2025.02.14 14:16:34.309 7190 7190 Verbose GameActivity onImeInsetsChanged from Text Listener
2025.02.14 14:16:34.309 7190 7223 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025.02.14 14:16:34.309 7190 7223 Info Unity Handle cmd APP_CMD_CONTENT_RECT_CHANGED(5)
2025.02.14 14:16:34.311 7190 7223 Info Unity Handle cmd APP_CMD_INIT_WINDOW(1)
2025.02.14 14:16:34.420 7190 7223 Info Unity MemoryManager: Using 'Dynamic Heap' Allocator.
2025.02.14 14:16:34.463 7190 7190 Debug gti.InputConnection onApplyWindowInsetsfalse
2025.02.14 14:16:34.463 7190 7190 Verbose GameActivity onImeInsetsChanged from Text Listener
2025.02.14 14:16:34.464 7190 7190 Debug gti.InputConnection onApplyWindowInsetsfalse
2025.02.14 14:16:34.464 7190 7190 Verbose GameActivity onImeInsetsChanged from Text Listener
2025.02.14 14:16:34.531 7190 7223 Info Unity SystemInfo CPU = ARM64 FP ASIMD AES, Cores = 9, Memory = 7598mb
2025.02.14 14:16:34.531 7190 7223 Info Unity SystemInfo ARM big.LITTLE configuration: 5 big (mask: 0x1f0), 4 little (mask: 0xf)
2025.02.14 14:16:34.533 7190 7223 Info Unity ApplicationInfo 'com.DefaultCompany.com.unity.template.mobile2D', Version '1.0.2', Min API Level '23', Target API Level '35'
2025.02.14 14:16:34.533 7190 7223 Info Unity Built from '6000.0/staging' branch, Version '6000.0.38f1 (82314a941f2d)', Build type 'Release', Scripting Backend 'il2cpp', CPU 'arm64-v8a', Stripping 'Enabled'
2025.02.14 14:16:34.533 7190 7223 Info Unity Device Model 'Google Pixel 8a', OS 'Android OS 15 (API 35)'
2025.02.14 14:16:34.625 7190 7225 Info FA-Ads Tag Manager is not found and thus will not be used
2025.02.14 14:16:36.143 7190 7223 Info Unity Company Name: DefaultCompany
2025.02.14 14:16:36.143 7190 7223 Info Unity Product Name: Ads
2025.02.14 14:16:36.151 7190 7223 Debug vulkan searching for layers in '/data/app/~~qy2G5qUtVD0jOTpsXsBZTw==/com.DefaultCompany.com.unity.template.mobile2D-OtbN1RrjI5LdQyIG5I3HaQ==/lib/arm64'
2025.02.14 14:16:36.152 7190 7223 Debug vulkan searching for layers in '/data/app/~~qy2G5qUtVD0jOTpsXsBZTw==/com.DefaultCompany.com.unity.template.mobile2D-OtbN1RrjI5LdQyIG5I3HaQ==/base.apk!/lib/arm64-v8a'
2025.02.14 14:16:36.175 7190 7223 Debug nativeloader Load liblibswappywrapper.so using ns clns-7 from class loader (caller=/data/app/~~qy2G5qUtVD0jOTpsXsBZTw==/com.DefaultCompany.com.unity.template.mobile2D-OtbN1RrjI5LdQyIG5I3HaQ==/base.apk!classes3.dex): dlopen failed: library "liblibswappywrapper.so" not found
2025.02.14 14:16:36.180 7190 7223 Debug nativeloader Load /data/app/~~qy2G5qUtVD0jOTpsXsBZTw==/com.DefaultCompany.com.unity.template.mobile2D-OtbN1RrjI5LdQyIG5I3HaQ==/lib/arm64/libswappywrapper.so using ns clns-7 from class loader (caller=/data/app/~~qy2G5qUtVD0jOTpsXsBZTw==/com.DefaultCompany.com.unity.template.mobile2D-OtbN1RrjI5LdQyIG5I3HaQ==/base.apk!classes3.dex): ok
2025.02.14 14:16:36.181 7190 7223 Info SwappyWrapper SwappyWrapperInit() succeeded. Build: Fri Feb 14 09:53:39 2025
2025.02.14 14:16:36.297 7190 7291 Debug AChoreographer Attaching thread to JVM for AChoreographer
2025.02.14 14:16:36.317 7190 7223 Verbose MediaRouter Audio routes updated: AudioRoutesInfo{ type=SPEAKER, bluetoothName=Bose QC45 }, a2dp=true
2025.02.14 14:16:36.317 7190 7223 Verbose MediaRouter Selecting route: RouteInfo{ name=Bose QC45, description=Bluetooth-Audio, status=null, category=RouteCategory{ name=System types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO  groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO , presentationDisplay=null }
2025.02.14 14:16:36.317 7190 7223 Info MediaRouter Skip setBluetoothA2dpOn(): types=1, isPlaybackActive()=false, BT route=RouteInfo{ name=Bose QC45, description=Bluetooth-Audio, status=null, category=RouteCategory{ name=System types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO  groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO , presentationDisplay=null }
2025.02.14 14:16:36.358 7190 7223 Info AAudio AAudioStreamBuilder_openStream() called ----------------------------------------
2025.02.14 14:16:36.359 7190 7223 Info AudioStreamBuilder rate   =  24000, channels  = 2, channelMask = 0x80000003, format   = 5, sharing = SH, dir = OUTPUT
2025.02.14 14:16:36.359 7190 7223 Info AudioStreamBuilder device =      0, sessionId = -1, perfMode = 12, callback: ON with frames = 512
2025.02.14 14:16:36.359 7190 7223 Info AudioStreamBuilder usage  =      0, contentType = 0, inputPreset = 0, allowedCapturePolicy = 0
2025.02.14 14:16:36.359 7190 7223 Info AudioStreamBuilder privacy sensitive = false, opPackageName = (null), attributionTag = (null)
2025.02.14 14:16:36.359 7190 7223 Debug AudioStreamBuilder build, global mmap policy is 0
2025.02.14 14:16:36.359 7190 7223 Debug AudioStreamBuilder build, system mmap policy is 2
2025.02.14 14:16:36.359 7190 7223 Debug AudioStreamBuilder build, final mmap policy is 2
2025.02.14 14:16:36.359 7190 7223 Debug AudioStreamBuilder build, system mmap exclusive policy is 2
2025.02.14 14:16:36.360 7190 7223 Debug AudioStreamBuilder build, final mmap exclusive policy is 2
2025.02.14 14:16:36.360 7190 7223 Debug mplate.mobile2D PlayerBase::PlayerBase()
2025.02.14 14:16:36.415 7190 7223 Debug AudioStreamInternal_Client configureDataInformation() original HW burst = 48, minMicros = 2000 => SW burst = 48
2025.02.14 14:16:36.415 7190 7223 Debug IsochronousClockModel setFramesPerBurst() - mFramesPerBurst = 48 - mBurstPeriodNanos = 2000000
2025.02.14 14:16:36.415 7190 7223 Debug AAudioStream setState(s#1) from 0 to 2
2025.02.14 14:16:36.415 7190 7223 Debug AAudioFlowGraph configure() source format = 0x00000005, channels = 2, sample rate = 24000, sink format = 0x00000005, channels = 2, sample rate = 24000, useMonoBlend = 0, audioBalance = 0.000000, useVolumeRamps 0
2025.02.14 14:16:36.419 7190 7223 Info AAudio AAudioStreamBuilder_openStream() returns 0 = AAUDIO_OK for s#1 ----------------
2025.02.14 14:16:36.427 7190 7223 Debug AAudio AAudioStream_requestStart(s#1) called --------------
2025.02.14 14:16:36.427 7190 7223 Debug AAudioStream setState(s#1) from 2 to 3
2025.02.14 14:16:36.498 7190 7223 Debug AAudio AAudioStream_requestStart(s#1) returned 0 ---------
2025.02.14 14:16:36.499 7190 7298 Debug AudioStreamInternalPlay_Client callbackLoop() entering >>>>>>>>>>>>>>>
2025.02.14 14:16:36.499 7190 7298 Debug AudioStreamInternal_Client onEventFromServer - got AAUDIO_SERVICE_EVENT_STARTED
2025.02.14 14:16:36.499 7190 7298 Debug AAudioStream setState(s#1) from 3 to 4
2025.02.14 14:16:37.964 7190 7223 Info IL2CPP Locale de-DE
2025.02.14 14:16:38.160 7190 7223 Debug nativeloader Load /data/app/~~qy2G5qUtVD0jOTpsXsBZTw==/com.DefaultCompany.com.unity.template.mobile2D-OtbN1RrjI5LdQyIG5I3HaQ==/lib/arm64/libAdaptivePerformanceAndroid.so using ns clns-7 from class loader (caller=/data/app/~~qy2G5qUtVD0jOTpsXsBZTw==/com.DefaultCompany.com.unity.template.mobile2D-OtbN1RrjI5LdQyIG5I3HaQ==/base.apk!classes3.dex): ok
2025.02.14 14:16:38.178 7190 7223 Debug nativeloader Load /data/app/~~qy2G5qUtVD0jOTpsXsBZTw==/com.DefaultCompany.com.unity.template.mobile2D-OtbN1RrjI5LdQyIG5I3HaQ==/lib/arm64/libAdaptivePerformanceThermalHeadroom.so using ns clns-7 from class loader (caller=/data/app/~~qy2G5qUtVD0jOTpsXsBZTw==/com.DefaultCompany.com.unity.template.mobile2D-OtbN1RrjI5LdQyIG5I3HaQ==/base.apk!classes3.dex): ok
2025.02.14 14:16:38.186 7190 7223 Debug nativeloader Load /data/app/~~qy2G5qUtVD0jOTpsXsBZTw==/com.DefaultCompany.com.unity.template.mobile2D-OtbN1RrjI5LdQyIG5I3HaQ==/lib/arm64/libAdaptivePerformanceHint.so using ns clns-7 from class loader (caller=/data/app/~~qy2G5qUtVD0jOTpsXsBZTw==/com.DefaultCompany.com.unity.template.mobile2D-OtbN1RrjI5LdQyIG5I3HaQ==/base.apk!classes3.dex): ok
2025.02.14 14:16:38.346 7190 7223 Info Unity     HasWindow = 1, HasFocus = 0
2025.02.14 14:16:38.346 7190 7223 Info Unity Handle cmd APP_CMD_WINDOW_RESIZED(3)
2025.02.14 14:16:38.346 7190 7223 Info Unity Handle cmd APP_CMD_WINDOW_REDRAW_NEEDED(4)
2025.02.14 14:16:38.347 7190 7223 Info Unity Handle cmd APP_CMD_LOW_MEMORY(10)
2025.02.14 14:16:38.347 7190 7223 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025.02.14 14:16:38.347 7190 7223 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025.02.14 14:16:38.348 7190 7223 Info Unity Handle cmd APP_CMD_TERM_WINDOW(2)
2025.02.14 14:16:38.352 7190 7223 Debug AAudio AAudioStream_requestStop(s#1) called
2025.02.14 14:16:38.355 7190 7298 Debug AudioStreamInternalPlay_Client callbackLoop() exiting, result = 512, isActive() = 1 <<<<<<<<<<<<<<
2025.02.14 14:16:38.357 7190 7223 Debug AAudioStream joinThread_l() pthread_join succeeded
2025.02.14 14:16:38.357 7190 7223 Debug IsochronousClockModel stop(nanos = 965590005868608) max lateness = 305 micros, DSP stalled 0 times
2025.02.14 14:16:38.357 7190 7223 Debug AAudioStream setState(s#1) from 4 to 9
2025.02.14 14:16:38.423 7190 7223 Debug AudioStreamInternal_Client onEventFromServer - got AAUDIO_SERVICE_EVENT_STOPPED
2025.02.14 14:16:38.423 7190 7223 Debug AAudioStream setState(s#1) from 9 to 10
2025.02.14 14:16:38.467 7190 7308 Warn HWUI Surface doesn't have any previously queued frames, nothing to readback from
2025.02.14 14:16:38.468 7190 7190 Error Surface freeAllBuffers: 1 buffers were freed while being dequeued!
2025.02.14 14:16:38.477 7190 7223 Info Unity Handle cmd APP_CMD_STOP(15)
2025.02.14 14:16:38.481 7190 7223 Info Unity Handle cmd APP_CMD_SAVE_STATE(13)
2025.02.14 14:16:38.488 7190 7190 Debug MediaRouter onRestoreRoute() : route=RouteInfo{ name=Bose QC45, description=Bluetooth-Audio, status=null, category=RouteCategory{ name=System types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO  groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO , presentationDisplay=null }
2025.02.14 14:16:38.488 7190 7190 Verbose MediaRouter Selecting route: RouteInfo{ name=Bose QC45, description=Bluetooth-Audio, status=null, category=RouteCategory{ name=System types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO  groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO , presentationDisplay=null }
2025.02.14 14:16:38.489 7190 7225 Info FA-Ads Application backgrounded at: timestamp_millis: 1739538994712
2025.02.14 14:16:38.501 7190 7190 Debug gti.InputConnection onApplyWindowInsetsfalse
2025.02.14 14:16:38.501 7190 7190 Verbose GameActivity onImeInsetsChanged from Text Listener
2025.02.14 14:16:38.501 7190 7223 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025.02.14 14:16:38.507 7190 7190 Debug gti.InputConnection onApplyWindowInsetsfalse
2025.02.14 14:16:38.507 7190 7190 Verbose GameActivity onImeInsetsChanged from Text Listener
2025.02.14 14:16:38.510 7190 7223 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025.02.14 14:16:38.568 7190 7225 Warn FA-Ads Analytics storage consent denied; will not get app instance id
2025.02.14 14:16:43.665 7190 7190 Debug gti.InputConnection onApplyWindowInsetsfalse
2025.02.14 14:16:43.665 7190 7190 Verbose GameActivity onImeInsetsChanged from Text Listener
2025.02.14 14:16:43.666 7190 7223 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025.02.14 14:16:46.097 7190 7223 Info Unity Handle cmd APP_CMD_START(11)
2025.02.14 14:16:46.102 7190 7190 Warn WindowOnBackDispatcher OnBackInvokedCallback is not enabled for the application.
2025.02.14 14:16:46.102 7190 7190 Warn WindowOnBackDispatcher Set 'android:enableOnBackInvokedCallback="true"' in the application manifest.
2025.02.14 14:16:46.102 7190 7223 Info Unity Handle cmd APP_CMD_RESUME(12)
2025.02.14 14:16:46.113 7190 7223 Info Unity Handle cmd APP_CMD_INIT_WINDOW(1)
2025.02.14 14:16:46.114 7190 7223 Info Unity     HasWindow = 1, HasFocus = 0
2025.02.14 14:16:46.114 7190 7223 Info Unity Handle cmd APP_CMD_WINDOW_REDRAW_NEEDED(4)
2025.02.14 14:16:46.114 7190 7190 Debug gti.InputConnection onApplyWindowInsetsfalse
2025.02.14 14:16:46.114 7190 7190 Verbose GameActivity onImeInsetsChanged from Text Listener
2025.02.14 14:16:46.114 7190 7190 Debug gti.InputConnection onApplyWindowInsetsfalse
2025.02.14 14:16:46.114 7190 7190 Verbose GameActivity onImeInsetsChanged from Text Listener
2025.02.14 14:16:46.115 7190 7223 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025.02.14 14:16:46.116 7190 7223 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025.02.14 14:16:46.134 7190 7190 Debug gti.InputConnection onApplyWindowInsetsfalse
2025.02.14 14:16:46.134 7190 7190 Verbose GameActivity onImeInsetsChanged from Text Listener
2025.02.14 14:16:46.134 7190 7190 Debug gti.InputConnection onApplyWindowInsetsfalse
2025.02.14 14:16:46.134 7190 7190 Verbose GameActivity onImeInsetsChanged from Text Listener
2025.02.14 14:16:46.134 7190 7223 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025.02.14 14:16:46.134 7190 7223 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025.02.14 14:16:46.158 7190 7190 Debug gti.InputConnection onApplyWindowInsetsfalse
2025.02.14 14:16:46.158 7190 7190 Verbose GameActivity onImeInsetsChanged from Text Listener
2025.02.14 14:16:46.158 7190 7190 Debug gti.InputConnection onApplyWindowInsetsfalse
2025.02.14 14:16:46.158 7190 7190 Verbose GameActivity onImeInsetsChanged from Text Listener
2025.02.14 14:16:46.158 7190 7223 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025.02.14 14:16:46.158 7190 7223 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025.02.14 14:16:46.478 7190 7190 Debug gti.InputConnection onApplyWindowInsetsfalse
2025.02.14 14:16:46.478 7190 7190 Verbose GameActivity onImeInsetsChanged from Text Listener
2025.02.14 14:16:46.478 7190 7223 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025.02.14 14:16:46.478 7190 7190 Debug gti.InputConnection onApplyWindowInsetsfalse
2025.02.14 14:16:46.478 7190 7190 Verbose GameActivity onImeInsetsChanged from Text Listener
2025.02.14 14:16:46.478 7190 7190 Debug gti.InputConnection onApplyWindowInsetsfalse
2025.02.14 14:16:46.478 7190 7190 Verbose GameActivity onImeInsetsChanged from Text Listener
2025.02.14 14:16:46.478 7190 7223 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025.02.14 14:16:46.478 7190 7223 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025.02.14 14:16:46.584 7190 7223 Error Surface getSlotFromBufferLocked: unknown buffer: 0xb400007668e7b350
2025.02.14 14:16:46.584 7190 7223 Error Surface freeAllBuffers: 1 buffers were freed while being dequeued!
2025.02.14 14:16:46.726 7190 7223 Info Unity Handle cmd APP_CMD_GAINED_FOCUS(7)
2025.02.14 14:16:46.972 7190 7368 Warn InteractionJankMonitor Initializing without READ_DEVICE_CONFIG permission. enabled=false, interval=1, missedFrameThreshold=3, frameTimeThreshold=64, package=com.DefaultCompany.com.unity.template.mobile2D
2025.02.14 14:16:48.762 7190 7190 Debug GameActivity ************** mainWorkCallback *********
2025.02.14 14:16:48.766 7190 7190 Info ImeTracker com.DefaultCompany.com.unity.template.mobile2D:e6578237: onRequestHide at ORIGIN_CLIENT reason HIDE_SOFT_INPUT fromUser false
2025.02.14 14:16:48.780 7190 7223 Debug nativeloader Load /data/app/~~qy2G5qUtVD0jOTpsXsBZTw==/com.DefaultCompany.com.unity.template.mobile2D-OtbN1RrjI5LdQyIG5I3HaQ==/lib/arm64/libAndroidCpuUsage.so using ns clns-7 from class loader (caller=/data/app/~~qy2G5qUtVD0jOTpsXsBZTw==/com.DefaultCompany.com.unity.template.mobile2D-OtbN1RrjI5LdQyIG5I3HaQ==/base.apk!classes3.dex): ok
2025.02.14 14:16:49.095 7190 7223 Debug AAudio AAudioStream_requestStart(s#1) called --------------
2025.02.14 14:16:49.095 7190 7223 Debug AAudioStream setState(s#1) from 10 to 3
2025.02.14 14:16:49.119 7190 7190 Debug gti.InputConnection onApplyWindowInsetsfalse
2025.02.14 14:16:49.119 7190 7190 Verbose GameActivity onImeInsetsChanged from Text Listener
2025.02.14 14:16:49.126 7190 7190 Debug gti.InputConnection onApplyWindowInsetsfalse
2025.02.14 14:16:49.126 7190 7190 Verbose GameActivity onImeInsetsChanged from Text Listener
2025.02.14 14:16:49.126 7190 7190 Debug gti.InputConnection onApplyWindowInsetsfalse
2025.02.14 14:16:49.126 7190 7190 Verbose GameActivity onImeInsetsChanged from Text Listener
2025.02.14 14:16:49.153 7190 7223 Debug AAudio AAudioStream_requestStart(s#1) returned 0 ---------
2025.02.14 14:16:49.155 7190 7190 Debug MediaRouter onRestoreRoute() : route=RouteInfo{ name=Bose QC45, description=Bluetooth-Audio, status=null, category=RouteCategory{ name=System types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO  groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO , presentationDisplay=null }
2025.02.14 14:16:49.155 7190 7190 Verbose MediaRouter Selecting route: RouteInfo{ name=Bose QC45, description=Bluetooth-Audio, status=null, category=RouteCategory{ name=System types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO  groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO , presentationDisplay=null }
2025.02.14 14:16:49.156 7190 7388 Debug AudioStreamInternalPlay_Client callbackLoop() entering >>>>>>>>>>>>>>>
2025.02.14 14:16:49.156 7190 7388 Debug AudioStreamInternal_Client onEventFromServer - got AAUDIO_SERVICE_EVENT_STARTED
2025.02.14 14:16:49.156 7190 7388 Debug AAudioStream setState(s#1) from 3 to 4
2025.02.14 14:16:49.160 7190 7223 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025.02.14 14:16:49.160 7190 7223 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025.02.14 14:16:49.160 7190 7223 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025.02.14 14:16:49.206 7190 7223 Warn Unity not required
2025.02.14 14:16:49.206 7190 7223 Warn Unity  #0 0x73a8882748 (libunity.so) ? 0x0
2025.02.14 14:16:49.206 7190 7223 Warn Unity  #1 0x73a8e87d40 (libunity.so) ? 0x0
2025.02.14 14:16:49.206 7190 7223 Warn Unity  #2 0x73a8576ca0 (libunity.so) ? 0x0
2025.02.14 14:16:49.206 7190 7223 Warn Unity  #3 0x73a8576bb0 (libunity.so) ? 0x0
2025.02.14 14:16:49.206 7190 7223 Warn Unity  #4 0x73a4d0043c (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.206 7190 7223 Warn Unity  #5 0x73a301b1d4 (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.206 7190 7223 Warn Unity  #6 0x73a2f8d9c4 (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.206 7190 7223 Warn Unity  #7 0x73a2f8d910 (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.206 7190 7223 Warn Unity  #8 0x73a87c44bc (libunity.so) ? 0x0
2025.02.14 14:16:49.206 7190 7223 Warn Unity  #9 0x73a87d7e00 (libunity.so) ? 0x0
2025.02.14 14:16:49.206 7190 7223 Warn Unity  #10 0x73a87e42cc (libunity.so) ? 0x0
2025.02.14 14:16:49.206 7190 7223 Warn Unity  #11 0x73a87e43dc (libunity.so) ? 0x0
2025.02.14 14:16:49.206 7190 7223 Warn Unity  #12 0x73a87e4b70 (libunity.so) ? 0x0
2025.02.14 14:16:49.206 7190 7223 Warn Unity  #13 0x73a86003b4 (libunity.so) ? 0x0
2025.02.14 14:16:49.206 7190 7223 Warn Unity  #14 0x73a86d63a4 (libunity.so) ? 0x0
2025.02.14 14:16:49.206 7190 7223 Warn Unity  #15 0x73a86d63e4 (libunity.so) ? 0x0
2025.02.14 14:16:49.206 7190 7223 Warn Unity  #16 0x73a86d6688 (libunity.so) ? 0x0
2025.02.14 14:16:49.206 7190 7223 Warn Unity  #17 0x73a88699c0 (libunity.so) ? 0x0
2025.02.14 14:16:49.206 7190 7223 Warn Unity  #18 0x73a8873438 (libunity.so) ? 0x0
2025.02.14 14:16:49.206 7190 7223 Warn Unity  #19 0x74c2462f30 (libgame.so) Unity::UnityApplication::ProcessFrame() 0x30
2025.02.14 14:16:49.206 7190 7223 Warn Unity  #20 0x74c246315c (libgame.so) Unity::UnityApplication::Loop() 0x188
2025.02.14 14:16:49.206 7190 7223 Warn Unity  #21 0x74c2465410 (libgame.so) MainLoop(android_app*) 0x3c
2025.02.14 14:16:49.206 7190 7223 Warn Unity  #22 0x74c24654a8 (libgame.so) android_main 0x64
2025.02.14 14:16:49.206 7190 7223 Warn Unity  #23 0x74c246bac8 (libgame.so) ? 0x0
2025.02.14 14:16:49.206 7190 7223 Warn Unity  #24
2025.02.14 14:16:49.214 7190 7390 Debug UserMessagingPlatform Stored info not exists: IABTCF_TCString
2025.02.14 14:16:49.214 7190 7390 Debug UserMessagingPlatform Stored info not exists: IABGPP_HDR_GppString
2025.02.14 14:16:49.214 7190 7390 Debug UserMessagingPlatform Stored info not exists: IABGPP_GppSID
2025.02.14 14:16:49.214 7190 7390 Debug UserMessagingPlatform Stored info not exists: IABUSPrivacy_String
2025.02.14 14:16:49.229 7190 7390 Info WebViewFactory Loading com.google.android.webview version 132.0.6834.163 (code 683416333)
0001.01.01 00:00:00.000 -1 -1 Info  --------- beginning of system
2025.02.14 14:16:49.229 7190 7390 Warn ResourcesManager Found a null ResourcesImpl, skipped.
2025.02.14 14:16:49.229 7190 7390 Warn ResourcesManager Found a null ResourcesImpl, skipped.
2025.02.14 14:16:49.231 7190 7390 Verbose ResourcesManager The following library key has been added: ResourcesKey{ mHash=7715c547 mResDir=null mSplitDirs=[] mOverlayDirs=[/product/overlay/NavigationBarModeGestural/NavigationBarModeGesturalOverlay.apk,/data/resource-cache/com.android.systemui-neutral-AAJa.frro,/data/resource-cache/com.android.systemui-accent-84dO.frro,/data/resource-cache/com.android.systemui-dynamic-IAFx.frro] mLibDirs=[/data/app/~~KWKc0YB4wSMJ72fJXvLv1g==/com.google.android.webview-nJkcrQvxOiGRxPYCxsBDqg==/base.apk,/data/app/~~1E31iYctoIDZSTtbWIk_0w==/com.google.android.trichromelibrary_683416333-WQAN1GzTqTxHOPE7pf1SFA==/base.apk,/system_ext/framework/androidx.window.extensions.jar] mDisplayId=0 mOverrideConfig=v35 mCompatInfo={420dpi always-compat} mLoaders=[]}
2025.02.14 14:16:49.232 7190 7390 Warn ziparchive Unable to open '/data/app/~~1E31iYctoIDZSTtbWIk_0w==/com.google.android.trichromelibrary_683416333-WQAN1GzTqTxHOPE7pf1SFA==/base.dm': No such file or directory
2025.02.14 14:16:49.232 7190 7390 Warn ziparchive Unable to open '/data/app/~~1E31iYctoIDZSTtbWIk_0w==/com.google.android.trichromelibrary_683416333-WQAN1GzTqTxHOPE7pf1SFA==/base.dm': No such file or directory
2025.02.14 14:16:49.233 7190 7390 Warn mplate.mobile2D Entry not found
2025.02.14 14:16:49.234 7190 7390 Debug nativeloader Configuring clns-12 for other apk /data/app/~~1E31iYctoIDZSTtbWIk_0w==/com.google.android.trichromelibrary_683416333-WQAN1GzTqTxHOPE7pf1SFA==/base.apk. target_sdk_version=34, uses_libraries=ALL, library_path=/data/app/~~KWKc0YB4wSMJ72fJXvLv1g==/com.google.android.webview-nJkcrQvxOiGRxPYCxsBDqg==/lib/arm64:/data/app/~~KWKc0YB4wSMJ72fJXvLv1g==/com.google.android.webview-nJkcrQvxOiGRxPYCxsBDqg==/base.apk!/lib/arm64-v8a:/data/app/~~1E31iYctoIDZSTtbWIk_0w==/com.google.android.trichromelibrary_683416333-WQAN1GzTqTxHOPE7pf1SFA==/base.apk!/lib/arm64-v8a, permitted_path=/data:/mnt/expand
2025.02.14 14:16:49.234 7190 7390 Debug nativeloader Extending system_exposed_libraries: libedgetpu_dba.google.so
2025.02.14 14:16:49.234 7190 7390 Debug ApplicationLoaders Returning zygote-cached class loader: /system_ext/framework/androidx.window.extensions.jar
2025.02.14 14:16:49.237 7190 7390 Debug nativeloader Configuring clns-13 for other apk /data/app/~~KWKc0YB4wSMJ72fJXvLv1g==/com.google.android.webview-nJkcrQvxOiGRxPYCxsBDqg==/base.apk. target_sdk_version=34, uses_libraries=, library_path=/data/app/~~KWKc0YB4wSMJ72fJXvLv1g==/com.google.android.webview-nJkcrQvxOiGRxPYCxsBDqg==/lib/arm64:/data/app/~~KWKc0YB4wSMJ72fJXvLv1g==/com.google.android.webview-nJkcrQvxOiGRxPYCxsBDqg==/base.apk!/lib/arm64-v8a:/data/app/~~1E31iYctoIDZSTtbWIk_0w==/com.google.android.trichromelibrary_683416333-WQAN1GzTqTxHOPE7pf1SFA==/base.apk!/lib/arm64-v8a, permitted_path=/data:/mnt/expand
2025.02.14 14:16:49.263 7190 7390 Info cr_WVCFactoryProvider version=132.0.6834.163 (683416333) minSdkVersion=29 isBundle=true multiprocess=true packageId=2
2025.02.14 14:16:49.270 7190 7390 Debug nativeloader Load /data/app/~~1E31iYctoIDZSTtbWIk_0w==/com.google.android.trichromelibrary_683416333-WQAN1GzTqTxHOPE7pf1SFA==/base.apk!/lib/arm64-v8a/libmonochrome_64.so using ns clns-13 from class loader (caller=/data/app/~~KWKc0YB4wSMJ72fJXvLv1g==/com.google.android.webview-nJkcrQvxOiGRxPYCxsBDqg==/base.apk): ok
2025.02.14 14:16:49.272 7190 7390 Debug nativeloader Load /system/lib64/libwebviewchromium_plat_support.so using ns clns-13 from class loader (caller=/data/app/~~KWKc0YB4wSMJ72fJXvLv1g==/com.google.android.webview-nJkcrQvxOiGRxPYCxsBDqg==/base.apk): ok
2025.02.14 14:16:49.276 7190 7393 Info chromium [0214/141649.275589:INFO:variations_seed_loader.cc(68)] Failed to open file for reading.: No such file or directory (2)
2025.02.14 14:16:49.279 7190 7190 Info cr_LibraryLoader Successfully loaded native library
2025.02.14 14:16:49.281 7190 7190 Info cr_CachingUmaRecorder Flushed 6 samples from 6 histograms, 0 samples were dropped.
2025.02.14 14:16:49.290 7190 7190 Info cr_CombinedPProvider #registerProvider() provider:WV.D8@dc159ce isPolicyCacheEnabled:false policyProvidersSize:0
2025.02.14 14:16:49.294 7190 7190 Info cr_PolicyProvider #setManagerAndSource() 0
2025.02.14 14:16:49.313 7190 7190 Info cr_CombinedPProvider #linkNativeInternal() 1
2025.02.14 14:16:49.313 7190 7223 Info Unity RenderGraph is now enabled.
2025.02.14 14:16:49.313 7190 7223 Info Unity  #0 0x73a8882748 (libunity.so) ? 0x0
2025.02.14 14:16:49.313 7190 7223 Info Unity  #1 0x73a8e87d40 (libunity.so) ? 0x0
2025.02.14 14:16:49.313 7190 7223 Info Unity  #2 0x73a8576ca0 (libunity.so) ? 0x0
2025.02.14 14:16:49.313 7190 7223 Info Unity  #3 0x73a8576bb0 (libunity.so) ? 0x0
2025.02.14 14:16:49.313 7190 7223 Info Unity  #4 0x73a4d0043c (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.313 7190 7223 Info Unity  #5 0x73a4ad0820 (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.313 7190 7223 Info Unity  #6 0x73a4a341c8 (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.313 7190 7223 Info Unity  #7 0x73a4d6c82c (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.313 7190 7223 Info Unity  #8 0x73a4d6e360 (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.313 7190 7223 Info Unity  #9 0x73a4d6e0a0 (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.313 7190 7223 Info Unity  #10 0x73a2f8d9c4 (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.313 7190 7223 Info Unity  #11 0x73a2f8d910 (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.313 7190 7223 Info Unity  #12 0x73a87c44bc (libunity.so) ? 0x0
2025.02.14 14:16:49.313 7190 7223 Info Unity  #13 0x73a87d7e00 (libunity.so) ? 0x0
2025.02.14 14:16:49.313 7190 7223 Info Unity  #14 0x73a889949c (libunity.so) ? 0x0
2025.02.14 14:16:49.313 7190 7223 Info Unity  #15 0x73a86a2080 (libunity.so) ? 0x0
2025.02.14 14:16:49.313 7190 7223 Info Unity  #16 0x73a8c60174 (libunity.so) ? 0x0
2025.02.14 14:16:49.313 7190 7223 Info Unity  #17 0x73a8c60854 (libunity.so) ? 0x0
2025.02.14 14:16:49.313 7190 7223 Info Unity  #18 0x73a86e1110 (libunity.so) ? 0x0
2025.02.14 14:16:49.313 7190 7223 Info Unity  #19 0x73a86d63a4 (libunity.so) ? 0x0
2025.02.14 14:16:49.313 7190 7223 Info Unity  #20 0x73a86d63e4 (libunity.so) ? 0x0
2025.02.14 14:16:49.313 7190 7223 Info Unity  #21 0x73a86d6688 (libunity.so) ? 0x0
2025.02.14 14:16:49.313 7190 7223 Info Unity  #22 0x73a88699c0 (libunity.so) ? 0x0
2025.02.14 14:16:49.313 7190 7223 Info Unity  #23 0x73a8873438 (libunity.so) ? 0x0
2025.02.14 14:16:49.313 7190 7223 Info Unity  #24 0x74c2462f30 (libgame.so) Unity::UnityApplication::ProcessFrame() 0x30
2025.02.14 14:16:49.313 7190 7223 Info Unity  #25 0x74
2025.02.14 14:16:49.314 7190 7190 Info cr_AppResProvider #getApplicationRestrictionsFromUserManager() Bundle[EMPTY_PARCEL]
2025.02.14 14:16:49.314 7190 7190 Info cr_PolicyProvider #notifySettingsAvailable() 0
2025.02.14 14:16:49.314 7190 7190 Info cr_CombinedPProvider #onSettingsAvailable() 0
2025.02.14 14:16:49.314 7190 7190 Info cr_CombinedPProvider #flushPolicies()
2025.02.14 14:16:49.418 7190 7434 Info CameraManagerGlobal Connecting to camera service
2025.02.14 14:16:49.469 7190 7390 Debug TrafficStats tagSocket(204) with statsTag=0xffffffff, statsUid=-1
2025.02.14 14:16:49.559 7190 7190 Debug gti.InputConnection onApplyWindowInsetsfalse
2025.02.14 14:16:49.559 7190 7190 Verbose GameActivity onImeInsetsChanged from Text Listener
2025.02.14 14:16:49.559 7190 7190 Debug gti.InputConnection onApplyWindowInsetsfalse
2025.02.14 14:16:49.559 7190 7190 Verbose GameActivity onImeInsetsChanged from Text Listener
2025.02.14 14:16:49.575 7190 7223 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025.02.14 14:16:49.575 7190 7223 Info Unity Handle cmd APP_CMD_WINDOW_INSETS_CHANGED(17)
2025.02.14 14:16:49.584 7190 7190 Info Unity Consent info updated successfully. Current consent status: NotRequired
2025.02.14 14:16:49.584 7190 7190 Info Unity  #0 0x73a8882748 (libunity.so) ? 0x0
2025.02.14 14:16:49.584 7190 7190 Info Unity  #1 0x73a8e87d40 (libunity.so) ? 0x0
2025.02.14 14:16:49.584 7190 7190 Info Unity  #2 0x73a8576ca0 (libunity.so) ? 0x0
2025.02.14 14:16:49.584 7190 7190 Info Unity  #3 0x73a8576bb0 (libunity.so) ? 0x0
2025.02.14 14:16:49.584 7190 7190 Info Unity  #4 0x73a4d0043c (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.584 7190 7190 Info Unity  #5 0x73a301b350 (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.584 7190 7190 Info Unity  #6 0x73a2f8d9c4 (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.584 7190 7190 Info Unity  #7 0x73a2f8d910 (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.584 7190 7190 Info Unity  #8 0x73a2f8dd74 (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.584 7190 7190 Info Unity  #9 0x73a2f3fe10 (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.584 7190 7190 Info Unity  #10 0x73a44c73f4 (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.584 7190 7190 Info Unity  #11 0x73a4ce844c (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.584 7190 7190 Info Unity  #12 0x73a4ce7ddc (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.584 7190 7190 Info Unity  #13 0x73a4cec84c (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.584 7190 7190 Info Unity  #14 0x73a2e1db8c (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.584 7190 7190 Info Unity  #15 0x73a2f8da48 (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.584 7190 7190 Info Unity  #16 0x73a2f8d910 (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.584 7190 7190 Info Unity  #17 0x73a87c44bc (libunity.so) ? 0x0
2025.02.14 14:16:49.584 7190 7190 Info Unity  #18 0x73a87d7e00 (libunity.so) ? 0x0
2025.02.14 14:16:49.584 7190 7190 Info Unity  #19 0x73a85919d8 (libunity.so) ? 0x0
2025.02.14 14:16:49.584 7190 7190 Info Unity  #20 0x7256dda8 (boot.oat) ? 0x0
2025.02.14 14:16:49.584 7190 7190 Info Unity 
2025.02.14 14:16:49.587 7190 7443 Info Unity Consent form displayed successfully or not required.
2025.02.14 14:16:49.587 7190 7443 Info Unity  #0 0x73a8882748 (libunity.so) ? 0x0
2025.02.14 14:16:49.587 7190 7443 Info Unity  #1 0x73a8e87d40 (libunity.so) ? 0x0
2025.02.14 14:16:49.587 7190 7443 Info Unity  #2 0x73a8576ca0 (libunity.so) ? 0x0
2025.02.14 14:16:49.587 7190 7443 Info Unity  #3 0x73a8576bb0 (libunity.so) ? 0x0
2025.02.14 14:16:49.587 7190 7443 Info Unity  #4 0x73a4d0043c (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.587 7190 7443 Info Unity  #5 0x73a441f894 (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.587 7190 7443 Info Unity  #6 0x73a2f8d9c4 (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.587 7190 7443 Info Unity  #7 0x73a2f8d910 (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.587 7190 7443 Info Unity  #8 0x73a2f8dd74 (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.587 7190 7443 Info Unity  #9 0x73a2f3fe10 (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.587 7190 7443 Info Unity  #10 0x73a44c73f4 (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.587 7190 7443 Info Unity  #11 0x73a4ce844c (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.587 7190 7443 Info Unity  #12 0x73a4ce7ddc (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.587 7190 7443 Info Unity  #13 0x73a4cec84c (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.587 7190 7443 Info Unity  #14 0x73a2e1db8c (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.587 7190 7443 Info Unity  #15 0x73a2f8da48 (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.587 7190 7443 Info Unity  #16 0x73a2f8d910 (libil2cpp.so) ? 0x0
2025.02.14 14:16:49.587 7190 7443 Info Unity  #17 0x73a87c44bc (libunity.so) ? 0x0
2025.02.14 14:16:49.587 7190 7443 Info Unity  #18 0x73a87d7e00 (libunity.so) ? 0x0
2025.02.14 14:16:49.587 7190 7443 Info Unity  #19 0x73a85919d8 (libunity.so) ? 0x0
2025.02.14 14:16:49.587 7190 7443 Info Unity  #20 0x7256dda8 (boot.oat) ? 0x0
2025.02.14 14:16:49.587 7190 7443 Info Unity 
2025.02.14 14:17:02.586 7190 7223 Info Unity Handle cmd APP_CMD_TOUCH_EVENT(20)
2025.02.14 14:17:02.632 7190 7223 Info Unity Handle cmd APP_CMD_TOUCH_EVENT(20)
2025.02.14 14:17:02.653 7190 7223 Info Unity Handle cmd APP_CMD_TOUCH_EVENT(20)
2025.02.14 14:17:02.690 7190 7223 Info Unity Handle cmd APP_CMD_TOUCH_EVENT(20)
2025.02.14 14:17:02.690 7190 7223 Info Unity Handle cmd APP_CMD_TOUCH_EVENT(20)
2025.02.14 14:17:02.690 7190 7223 Info Unity Handle cmd APP_CMD_TOUCH_EVENT(20)
2025.02.14 14:17:02.707 7190 7223 Info Unity Consent information has been reset.
2025.02.14 14:17:02.707 7190 7223 Info Unity  #0 0x73a8882748 (libunity.so) ? 0x0
2025.02.14 14:17:02.707 7190 7223 Info Unity  #1 0x73a8e87d40 (libunity.so) ? 0x0
2025.02.14 14:17:02.707 7190 7223 Info Unity  #2 0x73a8576ca0 (libunity.so) ? 0x0
2025.02.14 14:17:02.707 7190 7223 Info Unity  #3 0x73a8576bb0 (libunity.so) ? 0x0
2025.02.14 14:17:02.707 7190 7223 Info Unity  #4 0x73a4d0043c (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.707 7190 7223 Info Unity  #5 0x73a301b458 (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.707 7190 7223 Info Unity  #6 0x73a4d4dde0 (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.707 7190 7223 Info Unity  #7 0x73a323407c (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.707 7190 7223 Info Unity  #8 0x73a47f2d9c (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.707 7190 7223 Info Unity  #9 0x73a47f2380 (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.707 7190 7223 Info Unity  #10 0x73a47f7d34 (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.707 7190 7223 Info Unity  #11 0x73a2f8d9c4 (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.707 7190 7223 Info Unity  #12 0x73a2f8d910 (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.707 7190 7223 Info Unity  #13 0x73a87c44bc (libunity.so) ? 0x0
2025.02.14 14:17:02.707 7190 7223 Info Unity  #14 0x73a87d7e00 (libunity.so) ? 0x0
2025.02.14 14:17:02.707 7190 7223 Info Unity  #15 0x73a87e3464 (libunity.so) ? 0x0
2025.02.14 14:17:02.707 7190 7223 Info Unity  #16 0x73a86027dc (libunity.so) ? 0x0
2025.02.14 14:17:02.707 7190 7223 Info Unity  #17 0x73a86d63a4 (libunity.so) ? 0x0
2025.02.14 14:17:02.707 7190 7223 Info Unity  #18 0x73a86d63e4 (libunity.so) ? 0x0
2025.02.14 14:17:02.707 7190 7223 Info Unity  #19 0x73a86d6688 (libunity.so) ? 0x0
2025.02.14 14:17:02.707 7190 7223 Info Unity  #20 0x73a88699c0 (libunity.so) ? 0x0
2025.02.14 14:17:02.707 7190 7223 Info Unity  #21 0x73a8873438 (libunity.so) ? 0x0
2025.02.14 14:17:02.707 7190 7223 Info Unity  #22 0x74c2462f30 (libgame.so) Unity::UnityApplication::ProcessFrame() 0x30
2025.02.14 14:17:02.707 7190 7223 Info Unity  #23 0x74c246315c (libgame.so) Unity::UnityApplication::Loop() 0x188
2025.02.14 14:17:02.707 7190 7223 Info Unity  #24 0x
2025.02.14 14:17:02.708 7190 7223 Warn Unity not required
2025.02.14 14:17:02.708 7190 7223 Warn Unity  #0 0x73a8882748 (libunity.so) ? 0x0
2025.02.14 14:17:02.708 7190 7223 Warn Unity  #1 0x73a8e87d40 (libunity.so) ? 0x0
2025.02.14 14:17:02.708 7190 7223 Warn Unity  #2 0x73a8576ca0 (libunity.so) ? 0x0
2025.02.14 14:17:02.708 7190 7223 Warn Unity  #3 0x73a8576bb0 (libunity.so) ? 0x0
2025.02.14 14:17:02.708 7190 7223 Warn Unity  #4 0x73a4d0043c (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.708 7190 7223 Warn Unity  #5 0x73a301b1d4 (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.708 7190 7223 Warn Unity  #6 0x73a4d4dde0 (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.708 7190 7223 Warn Unity  #7 0x73a323407c (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.708 7190 7223 Warn Unity  #8 0x73a47f2d9c (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.708 7190 7223 Warn Unity  #9 0x73a47f2380 (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.708 7190 7223 Warn Unity  #10 0x73a47f7d34 (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.708 7190 7223 Warn Unity  #11 0x73a2f8d9c4 (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.708 7190 7223 Warn Unity  #12 0x73a2f8d910 (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.708 7190 7223 Warn Unity  #13 0x73a87c44bc (libunity.so) ? 0x0
2025.02.14 14:17:02.708 7190 7223 Warn Unity  #14 0x73a87d7e00 (libunity.so) ? 0x0
2025.02.14 14:17:02.708 7190 7223 Warn Unity  #15 0x73a87e3464 (libunity.so) ? 0x0
2025.02.14 14:17:02.708 7190 7223 Warn Unity  #16 0x73a86027dc (libunity.so) ? 0x0
2025.02.14 14:17:02.708 7190 7223 Warn Unity  #17 0x73a86d63a4 (libunity.so) ? 0x0
2025.02.14 14:17:02.708 7190 7223 Warn Unity  #18 0x73a86d63e4 (libunity.so) ? 0x0
2025.02.14 14:17:02.708 7190 7223 Warn Unity  #19 0x73a86d6688 (libunity.so) ? 0x0
2025.02.14 14:17:02.708 7190 7223 Warn Unity  #20 0x73a88699c0 (libunity.so) ? 0x0
2025.02.14 14:17:02.708 7190 7223 Warn Unity  #21 0x73a8873438 (libunity.so) ? 0x0
2025.02.14 14:17:02.708 7190 7223 Warn Unity  #22 0x74c2462f30 (libgame.so) Unity::UnityApplication::ProcessFrame() 0x30
2025.02.14 14:17:02.708 7190 7223 Warn Unity  #23 0x74c246315c (libgame.so) Unity::UnityApplication::Loop() 0x188
2025.02.14 14:17:02.708 7190 7223 Warn Unity  #24 0x74c2465410 (libgame.so)
2025.02.14 14:17:02.710 7190 7390 Debug UserMessagingPlatform Stored info not exists: IABTCF_TCString
2025.02.14 14:17:02.710 7190 7390 Debug UserMessagingPlatform Stored info not exists: IABGPP_HDR_GppString
2025.02.14 14:17:02.710 7190 7390 Debug UserMessagingPlatform Stored info not exists: IABGPP_GppSID
2025.02.14 14:17:02.711 7190 7390 Debug UserMessagingPlatform Stored info not exists: IABUSPrivacy_String
2025.02.14 14:17:02.813 7190 7190 Info Unity Consent info updated successfully. Current consent status: NotRequired
2025.02.14 14:17:02.813 7190 7190 Info Unity  #0 0x73a8882748 (libunity.so) ? 0x0
2025.02.14 14:17:02.813 7190 7190 Info Unity  #1 0x73a8e87d40 (libunity.so) ? 0x0
2025.02.14 14:17:02.813 7190 7190 Info Unity  #2 0x73a8576ca0 (libunity.so) ? 0x0
2025.02.14 14:17:02.813 7190 7190 Info Unity  #3 0x73a8576bb0 (libunity.so) ? 0x0
2025.02.14 14:17:02.813 7190 7190 Info Unity  #4 0x73a4d0043c (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.813 7190 7190 Info Unity  #5 0x73a301b350 (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.813 7190 7190 Info Unity  #6 0x73a2f8d9c4 (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.813 7190 7190 Info Unity  #7 0x73a2f8d910 (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.813 7190 7190 Info Unity  #8 0x73a2f8dd74 (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.813 7190 7190 Info Unity  #9 0x73a2f3fe10 (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.813 7190 7190 Info Unity  #10 0x73a44c73f4 (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.813 7190 7190 Info Unity  #11 0x73a4ce844c (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.813 7190 7190 Info Unity  #12 0x73a4ce7ddc (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.813 7190 7190 Info Unity  #13 0x73a4cec84c (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.813 7190 7190 Info Unity  #14 0x73a2e1db8c (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.813 7190 7190 Info Unity  #15 0x73a2f8da48 (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.813 7190 7190 Info Unity  #16 0x73a2f8d910 (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.813 7190 7190 Info Unity  #17 0x73a87c44bc (libunity.so) ? 0x0
2025.02.14 14:17:02.813 7190 7190 Info Unity  #18 0x73a87d7e00 (libunity.so) ? 0x0
2025.02.14 14:17:02.813 7190 7190 Info Unity  #19 0x73a85919d8 (libunity.so) ? 0x0
2025.02.14 14:17:02.813 7190 7190 Info Unity  #20 0x7256dda8 (boot.oat) ? 0x0
2025.02.14 14:17:02.813 7190 7190 Info Unity 
2025.02.14 14:17:02.816 7190 7448 Info Unity Consent form displayed successfully or not required.
2025.02.14 14:17:02.816 7190 7448 Info Unity  #0 0x73a8882748 (libunity.so) ? 0x0
2025.02.14 14:17:02.816 7190 7448 Info Unity  #1 0x73a8e87d40 (libunity.so) ? 0x0
2025.02.14 14:17:02.816 7190 7448 Info Unity  #2 0x73a8576ca0 (libunity.so) ? 0x0
2025.02.14 14:17:02.816 7190 7448 Info Unity  #3 0x73a8576bb0 (libunity.so) ? 0x0
2025.02.14 14:17:02.816 7190 7448 Info Unity  #4 0x73a4d0043c (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.816 7190 7448 Info Unity  #5 0x73a441f894 (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.816 7190 7448 Info Unity  #6 0x73a2f8d9c4 (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.816 7190 7448 Info Unity  #7 0x73a2f8d910 (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.816 7190 7448 Info Unity  #8 0x73a2f8dd74 (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.816 7190 7448 Info Unity  #9 0x73a2f3fe10 (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.816 7190 7448 Info Unity  #10 0x73a44c73f4 (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.816 7190 7448 Info Unity  #11 0x73a4ce844c (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.816 7190 7448 Info Unity  #12 0x73a4ce7ddc (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.816 7190 7448 Info Unity  #13 0x73a4cec84c (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.816 7190 7448 Info Unity  #14 0x73a2e1db8c (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.816 7190 7448 Info Unity  #15 0x73a2f8da48 (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.816 7190 7448 Info Unity  #16 0x73a2f8d910 (libil2cpp.so) ? 0x0
2025.02.14 14:17:02.816 7190 7448 Info Unity  #17 0x73a87c44bc (libunity.so) ? 0x0
2025.02.14 14:17:02.816 7190 7448 Info Unity  #18 0x73a87d7e00 (libunity.so) ? 0x0
2025.02.14 14:17:02.816 7190 7448 Info Unity  #19 0x73a85919d8 (libunity.so) ? 0x0
2025.02.14 14:17:02.816 7190 7448 Info Unity  #20 0x7256dda8 (boot.oat) ? 0x0
2025.02.14 14:17:02.816 7190 7448 Info Unity 
2025.02.14 14:17:09.917 7190 7223 Info Unity Handle cmd APP_CMD_TOUCH_EVENT(20)
2025.02.14 14:17:09.950 7190 7223 Info Unity Handle cmd APP_CMD_TOUCH_EVENT(20)
2025.02.14 14:17:09.984 7190 7223 Info Unity Handle cmd APP_CMD_TOUCH_EVENT(20)
2025.02.14 14:17:10.017 7190 7223 Info Unity Handle cmd APP_CMD_TOUCH_EVENT(20)
2025.02.14 14:17:10.050 7190 7223 Info Unity Handle cmd APP_CMD_TOUCH_EVENT(20)
2025.02.14 14:17:10.084 7190 7223 Info Unity Handle cmd APP_CMD_TOUCH_EVENT(20)
2025.02.14 14:17:10.085 7190 7223 Info Unity Handle cmd APP_CMD_TOUCH_EVENT(20)
2025.02.14 14:17:10.120 7190 7223 Info Unity Handle cmd APP_CMD_TOUCH_EVENT(20)
2025.02.14 14:17:10.135 7190 7223 Info Unity Showing privacy options form.
2025.02.14 14:17:10.135 7190 7223 Info Unity  #0 0x73a8882748 (libunity.so) ? 0x0
2025.02.14 14:17:10.135 7190 7223 Info Unity  #1 0x73a8e87d40 (libunity.so) ? 0x0
2025.02.14 14:17:10.135 7190 7223 Info Unity  #2 0x73a8576ca0 (libunity.so) ? 0x0
2025.02.14 14:17:10.135 7190 7223 Info Unity  #3 0x73a8576bb0 (libunity.so) ? 0x0
2025.02.14 14:17:10.135 7190 7223 Info Unity  #4 0x73a4d0043c (libil2cpp.so) ? 0x0
2025.02.14 14:17:10.135 7190 7223 Info Unity  #5 0x73a301b55c (libil2cpp.so) ? 0x0
2025.02.14 14:17:10.135 7190 7223 Info Unity  #6 0x73a4d4dde0 (libil2cpp.so) ? 0x0
2025.02.14 14:17:10.135 7190 7223 Info Unity  #7 0x73a323407c (libil2cpp.so) ? 0x0
2025.02.14 14:17:10.135 7190 7223 Info Unity  #8 0x73a47f2d9c (libil2cpp.so) ? 0x0
2025.02.14 14:17:10.135 7190 7223 Info Unity  #9 0x73a47f2380 (libil2cpp.so) ? 0x0
2025.02.14 14:17:10.135 7190 7223 Info Unity  #10 0x73a47f7d34 (libil2cpp.so) ? 0x0
2025.02.14 14:17:10.135 7190 7223 Info Unity  #11 0x73a2f8d9c4 (libil2cpp.so) ? 0x0
2025.02.14 14:17:10.135 7190 7223 Info Unity  #12 0x73a2f8d910 (libil2cpp.so) ? 0x0
2025.02.14 14:17:10.135 7190 7223 Info Unity  #13 0x73a87c44bc (libunity.so) ? 0x0
2025.02.14 14:17:10.135 7190 7223 Info Unity  #14 0x73a87d7e00 (libunity.so) ? 0x0
2025.02.14 14:17:10.135 7190 7223 Info Unity  #15 0x73a87e3464 (libunity.so) ? 0x0
2025.02.14 14:17:10.135 7190 7223 Info Unity  #16 0x73a86027dc (libunity.so) ? 0x0
2025.02.14 14:17:10.135 7190 7223 Info Unity  #17 0x73a86d63a4 (libunity.so) ? 0x0
2025.02.14 14:17:10.135 7190 7223 Info Unity  #18 0x73a86d63e4 (libunity.so) ? 0x0
2025.02.14 14:17:10.135 7190 7223 Info Unity  #19 0x73a86d6688 (libunity.so) ? 0x0
2025.02.14 14:17:10.135 7190 7223 Info Unity  #20 0x73a88699c0 (libunity.so) ? 0x0
2025.02.14 14:17:10.135 7190 7223 Info Unity  #21 0x73a8873438 (libunity.so) ? 0x0
2025.02.14 14:17:10.135 7190 7223 Info Unity  #22 0x74c2462f30 (libgame.so) Unity::UnityApplication::ProcessFrame() 0x30
2025.02.14 14:17:10.135 7190 7223 Info Unity  #23 0x74c246315c (libgame.so) Unity::UnityApplication::Loop() 0x188
2025.02.14 14:17:10.135 7190 7223 Info Unity  #24 0x74c246
2025.02.14 14:17:10.171 7190 7190 Warn UserMessagingPlatform Privacy options form is not required.
2025.02.14 14:17:10.174 7190 7450 Error Unity Failed to show consent privacy form with error: Privacy options form is not required.
2025.02.14 14:17:10.174 7190 7450 Error Unity  #0 0x73a8882748 (libunity.so) ? 0x0
2025.02.14 14:17:10.174 7190 7450 Error Unity  #1 0x73a8e87d40 (libunity.so) ? 0x0
2025.02.14 14:17:10.174 7190 7450 Error Unity  #2 0x73a8576ca0 (libunity.so) ? 0x0
2025.02.14 14:17:10.174 7190 7450 Error Unity  #3 0x73a8576bb0 (libunity.so) ? 0x0
2025.02.14 14:17:10.174 7190 7450 Error Unity  #4 0x73a4d0043c (libil2cpp.so) ? 0x0
2025.02.14 14:17:10.174 7190 7450 Error Unity  #5 0x73a2c2ad94 (libil2cpp.so) ? 0x0
2025.02.14 14:17:10.174 7190 7450 Error Unity  #6 0x73a441f894 (libil2cpp.so) ? 0x0
2025.02.14 14:17:10.174 7190 7450 Error Unity  #7 0x73a2f8d9c4 (libil2cpp.so) ? 0x0
2025.02.14 14:17:10.174 7190 7450 Error Unity  #8 0x73a2f8d910 (libil2cpp.so) ? 0x0
2025.02.14 14:17:10.174 7190 7450 Error Unity  #9 0x73a2f8dd74 (libil2cpp.so) ? 0x0
2025.02.14 14:17:10.174 7190 7450 Error Unity  #10 0x73a2f3fe10 (libil2cpp.so) ? 0x0
2025.02.14 14:17:10.174 7190 7450 Error Unity  #11 0x73a44c73f4 (libil2cpp.so) ? 0x0
2025.02.14 14:17:10.174 7190 7450 Error Unity  #12 0x73a4ce844c (libil2cpp.so) ? 0x0
2025.02.14 14:17:10.174 7190 7450 Error Unity  #13 0x73a4ce7ddc (libil2cpp.so) ? 0x0
2025.02.14 14:17:10.174 7190 7450 Error Unity  #14 0x73a4cec84c (libil2cpp.so) ? 0x0
2025.02.14 14:17:10.174 7190 7450 Error Unity  #15 0x73a2e1db8c (libil2cpp.so) ? 0x0
2025.02.14 14:17:10.174 7190 7450 Error Unity  #16 0x73a2f8da48 (libil2cpp.so) ? 0x0
2025.02.14 14:17:10.174 7190 7450 Error Unity  #17 0x73a2f8d910 (libil2cpp.so) ? 0x0
2025.02.14 14:17:10.174 7190 7450 Error Unity  #18 0x73a87c44bc (libunity.so) ? 0x0
2025.02.14 14:17:10.174 7190 7450 Error Unity  #19 0x73a87d7e00 (libunity.so) ? 0x0
2025.02.14 14:17:10.174 7190 7450 Error Unity  #20 0x73a85919d8 (libunity.so) ? 0x0
2025.02.14 14:17:10.174 7190 7450 Error Unity  #21 0x7256dda8 (boot.oat) ? 0x0
2025.02.14 14:17:10.174 7190 7450 Error Unity 

@NVentimiglia
Copy link
Member

NVentimiglia commented Feb 19, 2025

Failed to show consent privacy form with error: Form not found!

This usually means that the form is not set up in the Admob UI

http://support.google.com/admob/answer/10107561

@PeakShredder
Copy link
Author

I'm not sure what I did wrong. In the AdMob UI, the message is set and active. The form is linked to an app, and the App ID is correctly placed under "Assets/Google Mobile Ads/Settings -> Google Mobile Ads App ID (Android)". I'm using the code from the example. The form displays correctly in the Editor but does not appear in the build.

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

No branches or pull requests

2 participants