dotnet / android

.NET for Android provides open-source bindings of the Android SDK for use with .NET managed languages such as C#
MIT License
1.92k stars 526 forks source link

FATAL EXCEPTION: Android.Runtime.JNINativeWrapper.Wrap_JniMarshal_PP_V #8528

Closed Xilmirius closed 10 months ago

Xilmirius commented 10 months ago

Android application type

.NET Android (net7.0-android, etc.)

Affected platform version

VS 2022 17.8.0

Description

Hi guys, weird problem here: i have a Maui blazor hybrid app wich basically is a just browser at the moment, i can compile it, try it in Android Emulator and works perfect in every Android Api from 24 to 33 (try it with the Pixel 2 and Pixel 5), the problem is that trying to publish my app in the Google store i got an exception error from their test in almost every platform they try it. The error is this: at Android.Runtime.JNINativeWrapper.Wrap_JniMarshal_PP_V(_JniMarshal_PP_V , IntPtr , IntPtr ) FATAL EXCEPTION: main Process: com.nextdesk.app, PID: 23972 android.runtime.JavaProxyThrowable: System.NullReferenceException: Object reference not set to an instance of an object at Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.SetupDefaults(MauiAppBuilder builder) at Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.UseMauiApp[App](MauiAppBuilder builder) at NextDesk.App.MauiProgram.CreateMauiApp() at NextDesk.App.Platforms.Android.MainApplication.CreateMauiApp() at Microsoft.Maui.MauiApplication.OnCreate() at Android.App.Application.n_OnCreate(IntPtr , IntPtr ) at Android.Runtime.JNINativeWrapper.Wrap_JniMarshal_PP_V(_JniMarshal_PP_V , IntPtr , IntPtr ) at crc6488302ad6e9e4df1a.MauiApplication.n_onCreate(Native Method) at crc6488302ad6e9e4df1a.MauiApplication.onCreate(Unknown Source:0) at android.app.Instrumentation.callApplicationOnCreate(Instrumentation.java:1192) at android.app.ActivityThread.handleBindApplication(ActivityThread.java:6719) at android.app.ActivityThread.access$1300(ActivityThread.java:237) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1913) at android.os.Handler.dispatchMessage(Handler.java:106) at android.os.Looper.loop(Looper.java:223) at android.app.ActivityThread.main(ActivityThread.java:7664) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:592) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:947)

Trying it in the Test Lab from Firebase i got the same:

Steps to Reproduce

My files looks like this: MauiProgram.cs:

        public static MauiApp CreateMauiApp()
        {
            try
            {

                var builder = MauiApp.CreateBuilder();

                SetupSerilog();

                builder
                    .UseMauiApp<App>()
                    .Logging.AddSerilog();

#if DEBUG
                builder.Services.AddBlazorWebViewDeveloperTools();

                var baseAddress = DeviceInfo.Platform == DevicePlatform.Android ? "***" : "https://localhost:7035";
                var handler = GetPlatformMessageHandler();
                builder.Services.AddScoped(_ => new HttpClient(handler) { BaseAddress = new Uri(baseAddress) });
#else
                builder.Services.AddScoped(_ => new HttpClient { BaseAddress = new Uri("****") });
#endif

                builder.Services.AddMauiBlazorWebView();
                builder.Services.AddScoped<MyHttpClient>();
                builder.Services.AddScoped<Crud>();
                builder.Services.AddScoped<ApplicationState>();
                builder.Services.AddScoped<ToastService>();
                builder.Services.AddScoped<BackgroundLoaderService>();
                builder.Services.AddAuthorizationCore(opt =>
                    opt.FallbackPolicy = new AuthorizationPolicyBuilder()
                                                .RequireAuthenticatedUser()
                                                .Build()
                );
                builder.Services.AddScoped<AuthenticationStateProvider, ApiAuthenticationStateProvider>();

                return builder.Build();
            }
            catch (Exception ex)
            {
                Console.Error.WriteLine("CreateMauiApp local: ex {Ex}, Msg: {Msg}", ex, ex.Message);
                throw;
            }
        }

        public static HttpMessageHandler GetPlatformMessageHandler()
        {
            if (DeviceInfo.Platform != DevicePlatform.Android && DeviceInfo.Platform != DevicePlatform.iOS) return new HttpClientHandler();

            return new HttpClientHandler
            {
                ServerCertificateCustomValidationCallback = (message, cert, chain, errors) =>
                {
                    if (cert is not null && cert.Issuer.Equals("CN=localhost")) return true;
                    return errors == System.Net.Security.SslPolicyErrors.None;
                }
            };
        }

        private static void SetupSerilog()
        {
            var flushInterval = TimeSpan.FromSeconds(5);
            var file = Path.Combine(FileSystem.Current.AppDataDirectory, "NextDesk.log");

            Log.Logger = new LoggerConfiguration()
            .MinimumLevel.Verbose()
            .MinimumLevel.Override("Microsoft", LogEventLevel.Warning)
            .Enrich.FromLogContext()
            .WriteTo.Debug()
            .WriteTo.File(file, flushToDiskInterval: flushInterval, encoding: System.Text.Encoding.UTF8, rollingInterval: RollingInterval.Day, retainedFileCountLimit: 22)
            .CreateLogger();
        }
    }```
App.xaml.cs:
public partial class App : Application
{
    private readonly ApplicationState state;

    public App(ApplicationState state)
    {
        try
        {
            this.state = state;
            InitializeComponent();
            MainPage = new MainPage();
        }
        catch (Exception ex)
        {
            Console.Error.WriteLine("App: ex {Ex}, Msg: {Msg}", ex, ex.Message);
            throw;
        }
    }
}```

MainPage.xaml.cs:

public partial class MainPage : ContentPage
{
    public MainPage()
    {
            InitializeComponent();
    }
}

Did you find any workaround?

No

Relevant log output

11-23 14:18:39.465: I/Robo(23757): Received request from the controller: # androidx.test.tools.crawler.proto.PerformAction@3f773822
11-23 14:18:39.465: I/Robo(23757): action {
11-23 14:18:39.465: I/Robo(23757):   launch_action {
11-23 14:18:39.465: I/Robo(23757):     app_package_name: "com.nextdesk.app"
11-23 14:18:39.465: I/Robo(23757):     starting_intent {
11-23 14:18:39.465: I/Robo(23757):       type: 1
11-23 14:18:39.465: I/Robo(23757):     }
11-23 14:18:39.465: I/Robo(23757):   }
11-23 14:18:39.465: I/Robo(23757): }
11-23 14:18:39.496: I/Robo(23757): UiAutomatorOnly Mode.
11-23 14:18:39.509: W/FileTestStorage(23757): Output properties is not supported.
11-23 14:18:39.512: D/StrictMode(23757): StrictMode policy violation: android.os.strictmode.NonSdkApiUsedViolation: Landroid/os/Trace;->setAppTracingAllowed(Z)V
11-23 14:18:39.512: D/StrictMode(23757):    at android.os.StrictMode.lambda$static$1(StrictMode.java:416)
11-23 14:18:39.512: D/StrictMode(23757):    at android.os.-$$Lambda$StrictMode$lu9ekkHJ2HMz0jd3F8K8MnhenxQ.accept(Unknown Source:2)
11-23 14:18:39.512: D/StrictMode(23757):    at java.lang.Class.getDeclaredMethodInternal(Native Method)
11-23 14:18:39.512: D/StrictMode(23757):    at java.lang.Class.getPublicMethodRecursive(Class.java:2079)
11-23 14:18:39.512: D/StrictMode(23757):    at java.lang.Class.getMethod(Class.java:2066)
11-23 14:18:39.512: D/StrictMode(23757):    at java.lang.Class.getMethod(Class.java:1693)
11-23 14:18:39.512: D/StrictMode(23757):    at androidx.test.tools.crawler.obfuscated.ae.a.forceEnableAppTracing(Trace.java:1)
11-23 14:18:39.512: D/StrictMode(23757):    at androidx.test.platform.tracing.AndroidXTracer.enableTracing(AndroidXTracer.java:1)
11-23 14:18:39.512: D/StrictMode(23757):    at androidx.test.platform.tracing.Tracing.<init>(Tracing.java:2)
11-23 14:18:39.512: D/StrictMode(23757):    at androidx.test.platform.tracing.Tracing.<clinit>(Tracing.java:2)
11-23 14:18:39.512: D/StrictMode(23757):    at androidx.test.platform.tracing.Tracing.getInstance(Unknown Source:0)
11-23 14:18:39.512: D/StrictMode(23757):    at androidx.test.espresso.base.BaseLayerModule.providesTracing(BaseLayerModule.java:1)
11-23 14:18:39.512: D/StrictMode(23757):    at androidx.test.espresso.base.BaseLayerModule_ProvidesTracingFactory.providesTracing(BaseLayerModule_ProvidesTracingFactory.java:1)
11-23 14:18:39.512: D/StrictMode(23757):    at androidx.test.espresso.base.BaseLayerModule_ProvidesTracingFactory.get(BaseLayerModule_ProvidesTracingFactory.java:1)
11-23 14:18:39.512: D/StrictMode(23757):    at androidx.test.espresso.base.BaseLayerModule_ProvidesTracingFactory.get(BaseLayerModule_ProvidesTracingFactory.java:2)
11-23 14:18:39.512: D/StrictMode(23757):    at androidx.test.tools.crawler.obfuscated.cq.d.get(DoubleCheck.java:1)
11-23 14:18:39.512: D/StrictMode(23757):    at androidx.test.espresso.base.IdlingResourceRegistry_Factory.get(IdlingResourceRegistry_Factory.java:1)
11-23 14:18:39.512: D/StrictMode(23757):    at androidx.test.espresso.base.IdlingResourceRegistry_Factory.get(IdlingResourceRegistry_Factory.java:2)
11-23 14:18:39.512: D/StrictMode(23757):    at androidx.test.tools.crawler.obfuscated.cq.d.get(DoubleCheck.java:1)
11-23 14:18:39.512: D/StrictMode(23757):    at androidx.test.espresso.DaggerBaseLayerComponent$BaseLayerComponentImpl.idlingResourceRegistry(DaggerBaseLayerComponent.java:1)
11-23 14:18:39.512: D/StrictMode(23757):    at androidx.test.espresso.Espresso.<clinit>(Espresso.java:3)
11-23 14:18:39.512: D/StrictMode(23757):    at androidx.test.espresso.Espresso.setFailureHandler(Espresso.java:1)
11-23 14:18:39.512: D/StrictMode(23757):    at androidx.test.tools.crawler.platform.hybrid.HybridInteractionController.installFailureHandler(HybridInteractionController.java:1)
11-23 14:18:39.512: D/StrictMode(23757):    at androidx.test.tools.crawler.platform.hybrid.HybridInteractionController.<init>(HybridInteractionController.java:2)
11-23 14:18:39.512: D/StrictMode(23757):    at androidx.test.tools.crawler.platform.dagger.DaggerCrawlPlatformComponent$RequestComponentImpl.hybridInteractionController(DaggerCrawlPlatformComponent.java:1)
11-23 14:18:39.512: D/StrictMode(23757):    at androidx.test.tools.crawler.platform.dagger.DaggerCrawlPlatformComponent$RequestComponentImpl.uiInteractionController(DaggerCrawlPlatformComponent.java:1)
11-23 14:18:39.512: D/StrictMode(23757):    at androidx.test.tools.crawler.platform.RemotePlatform.uiInteractionController(RemotePlatform.java:1)
11-23 14:18:39.512: D/StrictMode(23757):    at androidx.test.tools.crawler.platform.RemotePlatform.handlePerformAction(RemotePlatform.java:21)
11-23 14:18:39.512: D/StrictMode(23757):    at androidx.test.tools.crawler.platform.RemotePlatform.messageLoop(RemotePlatform.java:59)
11-23 14:18:39.512: D/StrictMode(23757):    at androidx.test.tools.crawler.platform.RemotePlatform.lambda$startCrawlAndWaitUntilFinished$0$androidx-test-tools-crawler-platform-RemotePlatform(RemotePlatform.java:1)
11-23 14:18:39.512: D/StrictMode(23757):    at androidx.test.tools.crawler.platform.RemotePlatform$$ExternalSyntheticLambda1.run(Unknown Source:6)
11-23 14:18:39.512: D/StrictMode(23757):    at java.lang.Thread.run(Thread.java:923)
11-23 14:18:39.512: I/Tracing(23757): Tracer added: class androidx.test.platform.tracing.AndroidXTracer
11-23 14:18:39.516: D/ampp(21993): Starting download: https://www.gstatic.com/icing/idd/rewriter_rules/rewrite_config_0_percent_1554768285.pb
11-23 14:18:39.516: V/ampp(21993): Is http uri, downloading (uri: https://www.gstatic.com/icing/idd/rewriter_rules/rewrite_config_0_percent_1554768285.pb)
11-23 14:18:39.517: D/ampp(21993): Starting download: https://www.gstatic.com/icing/idd/rewriter_rules/rewrite_config_10_percent_1554768285.pb
11-23 14:18:39.517: V/ampp(21993): Is http uri, downloading (uri: https://www.gstatic.com/icing/idd/rewriter_rules/rewrite_config_10_percent_1554768285.pb)
11-23 14:18:39.537: D/BufferPoolAccessor2.0(913): bufferpool2 0xb40000702470c0e8 : 5(3543040 size) total buffers - 5(3543040 size) used buffers - 14/19 (recycle/alloc) - 3/14 (fetch/transfer)
11-23 14:18:39.540: D/PhFileGroupPop(21993): Added file groups smart_actions_grammars
11-23 14:18:39.545: D/PhFileGroupPop(21993): Added file groups smart_actions_ml_models
11-23 14:18:39.546: D/PhFileGroupPop(21993): Added file groups text_classifier
11-23 14:18:39.551: D/PhFileGroupPop(21993): Added file groups smart_actions_emotive_models
11-23 14:18:39.589: D/PhFileGroupPop(21993): Added file groups smarts_expressive_content_scoped_v1
11-23 14:18:39.591: D/PhFileGroupPop(21993): Added file groups smart_actions_sensitive_classifier_models
11-23 14:18:39.592: D/PhFileGroupPop(21993): Added file groups scripted_reply
11-23 14:18:39.594: D/PhFileGroupPop(21993): Added file groups multitask_experiment
11-23 14:18:39.595: D/PhFileGroupPop(21993): Added file groups spam_verdict_enforcement_policy_config
11-23 14:18:39.596: D/PhFileGroupPop(21993): Added file groups smart_suggestion_reranker_models
11-23 14:18:39.597: D/PhFileGroupPop(21993): Added file groups calendar_appointment_grammar
11-23 14:18:39.599: D/PhFileGroupPop(21993): Added file groups smart_actions_smart_assistant
11-23 14:18:39.656: D/BoundBrokerSvc(18736): onUnbind: Intent { act=com.google.android.gms.gmscompliance.service.START dat=chimera-action: cmp=com.google.android.gms/.chimera.PersistentBoundBrokerService }
11-23 14:18:39.662: D/BoundBrokerSvc(19164): onUnbind: Intent { act=com.google.android.gms.safetynet.service.START pkg=com.google.android.gms }
11-23 14:18:39.662: I/FacsCacheGmsModule(18736): (REDACTED) Received 'getActivityControlsSettings' request from package '%s', instance id '%s', version '%d'...
11-23 14:18:39.663: I/FacsCacheGmsModule(18736): Operation 'getActivityControlsSettings' dispatched!
11-23 14:18:39.663: I/FacsCacheGmsModule(18736): (REDACTED) Executing operation '%s'...
11-23 14:18:39.666: I/FacsCacheGmsModule(18736): (REDACTED) Operation '%s' successful!
11-23 14:18:39.670: I/DCU_IntentOperation(19164): handleUdcSettingChanged: Udc flag is enabled [CONTEXT service_id=135 ]
11-23 14:18:39.684: I/ackageinstalle(23614): Waiting for a blocking GC ProfileSaver
11-23 14:18:39.692: I/ackageinstalle(23614): WaitForGcToComplete blocked ProfileSaver on ClassLinker for 7.969ms
11-23 14:18:39.763: W/ip(23951): type=1400 audit(0.0:515): avc: denied { search } for name="net" dev="dm-11" ino=37 scontext=u:r:shell:s0 tcontext=u:object_r:net_data_file:s0 tclass=dir permissive=0
11-23 14:18:39.818: E/WifiHAL(909): handleResponse: OTHER_RX_MULTICAST_CNT not found
11-23 14:18:39.836: I/constellation(19164): [event_manager] Starting session. sessionId: d6aadfb9-89fe-4f56-8614-2a1e98f7df68 from trigger: 4
11-23 14:18:39.839: D/VSC(898): @ 3473.057: [WO] isFlat() nearest_rotation: 1, flat_angle: 40
11-23 14:18:39.839: D/VSC(898): @ 3473.057: [WO] orientation angle 89, orientation 1
11-23 14:18:39.843: D/BoundBrokerSvc(19164): onBind: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.843: D/BoundBrokerSvc(19164): Loading bound service for intent: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.847: D/BoundBrokerSvc(19164): onUnbind: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.855: D/BoundBrokerSvc(19164): onBind: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.855: D/BoundBrokerSvc(19164): Loading bound service for intent: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.859: D/BoundBrokerSvc(19164): onUnbind: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.887: I/constellation(19164): [verification_manager] No cached state for EXTERNAL_CONSENT_ACTIVITY_STATE
11-23 14:18:39.891: I/constellation(19164): [verification_manager] No cached state for ON_DEMAND_CONSENT_STATE
11-23 14:18:39.894: I/constellation(19164): [verification_manager] No cached state for ON_DEMAND_CONSENT_V2_STATE
11-23 14:18:39.898: D/BoundBrokerSvc(19164): onBind: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.898: D/BoundBrokerSvc(19164): Loading bound service for intent: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.901: D/BoundBrokerSvc(19164): onUnbind: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.907: D/BoundBrokerSvc(19164): onBind: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.907: D/BoundBrokerSvc(19164): Loading bound service for intent: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.911: D/BoundBrokerSvc(19164): onUnbind: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.919: I/Checkin(19164): [CheckinApiChimeraService] onGetService
11-23 14:18:39.929: D/BoundBrokerSvc(19164): onBind: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.929: D/BoundBrokerSvc(19164): Loading bound service for intent: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.937: D/BoundBrokerSvc(19164): onUnbind: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.942: D/BoundBrokerSvc(19164): onBind: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.943: D/BoundBrokerSvc(19164): Loading bound service for intent: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.945: D/BoundBrokerSvc(19164): onUnbind: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.953: D/BoundBrokerSvc(19164): onBind: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.953: D/BoundBrokerSvc(19164): Loading bound service for intent: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.957: D/BoundBrokerSvc(19164): onUnbind: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.964: D/BoundBrokerSvc(19164): onBind: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.964: D/BoundBrokerSvc(19164): Loading bound service for intent: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.969: D/BoundBrokerSvc(19164): onUnbind: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.974: D/BoundBrokerSvc(19164): onBind: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.974: D/BoundBrokerSvc(19164): Loading bound service for intent: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.978: D/BoundBrokerSvc(19164): onUnbind: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.986: D/BoundBrokerSvc(19164): onBind: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.986: D/BoundBrokerSvc(19164): Loading bound service for intent: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.990: D/BoundBrokerSvc(19164): onUnbind: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.998: D/BoundBrokerSvc(19164): onBind: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:39.998: D/BoundBrokerSvc(19164): Loading bound service for intent: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:40.004: D/BoundBrokerSvc(19164): onUnbind: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:40.011: W/JavaBinder(15042): BinderProxy is being destroyed but the application did not call unlinkToDeath to unlink all of its death recipients beforehand.  Releasing leaked death recipient: com.google.android.play.core.d.b
11-23 14:18:40.011: I/BpBinder(15042): onLastStrongRef automatically unlinking death recipients: <uncached descriptor>
11-23 14:18:40.012: D/BoundBrokerSvc(19164): onBind: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:40.012: D/BoundBrokerSvc(19164): Loading bound service for intent: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:40.013: I/Robo(23757): UiAutomator: launching app
11-23 14:18:40.017: I/ActivityTaskManager(1612): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10000000 pkg=com.nextdesk.app cmp=com.nextdesk.app/crc6459b42d67be339a8c.MainActivity} from uid 10271
11-23 14:18:40.028: D/CompatibilityChangeReporter(1612): Compat change id reported: 136219221; UID 10268; state: DISABLED
11-23 14:18:40.031: D/BoundBrokerSvc(19164): onUnbind: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:40.031: D/CompatibilityChangeReporter(1612): Compat change id reported: 135634846; UID 10273; state: DISABLED
11-23 14:18:40.031: D/CompatibilityChangeReporter(1612): Compat change id reported: 135754954; UID 10273; state: ENABLED
11-23 14:18:40.031: D/CompatibilityChangeReporter(1612): Compat change id reported: 143937733; UID 10273; state: ENABLED
11-23 14:18:40.062: W/LastMileLogger(1612): Failed to read event trace: /sys/kernel/debug/tracing/instances/wifi/trace
11-23 14:18:40.063: D/Zygote(867): Forked child process 23972
11-23 14:18:40.070: I/ActivityManager(1612): Start proc 23972:com.nextdesk.app/u0a273 for pre-top-activity {com.nextdesk.app/crc6459b42d67be339a8c.MainActivity}
11-23 14:18:40.086: E/om.nextdesk.ap(23972): Not starting debugger since process cannot load the jdwp agent.
11-23 14:18:40.089: W/AiAiAutofill(5338): Failed to set whitelist for augmented autofill service.
11-23 14:18:40.089: W/AiAiAutofill(5338): java.lang.SecurityException: caller is not user's Augmented Autofill Service
11-23 14:18:40.089: W/AiAiAutofill(5338):   at android.view.autofill.AutofillManager.setAugmentedAutofillWhitelist(AutofillManager.java:2074)
11-23 14:18:40.089: W/AiAiAutofill(5338):   at boz.a(PG:10)
11-23 14:18:40.089: W/AiAiAutofill(5338):   at bpv.c(PG:6)
11-23 14:18:40.089: W/AiAiAutofill(5338):   at bqn.a(PG:10)
11-23 14:18:40.089: W/AiAiAutofill(5338):   at bqt.a(Unknown Source:23)
11-23 14:18:40.089: W/AiAiAutofill(5338):   at fll.a(PG:40)
11-23 14:18:40.089: W/AiAiAutofill(5338):   at fll.a(PG:99)
11-23 14:18:40.089: W/AiAiAutofill(5338):   at fki.run(Unknown Source:114)
11-23 14:18:40.089: W/AiAiAutofill(5338):   at csp.run(Unknown Source:6)
11-23 14:18:40.089: W/AiAiAutofill(5338):   at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:462)
11-23 14:18:40.089: W/AiAiAutofill(5338):   at java.util.concurrent.FutureTask.run(FutureTask.java:266)
11-23 14:18:40.089: W/AiAiAutofill(5338):   at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:301)
11-23 14:18:40.089: W/AiAiAutofill(5338):   at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
11-23 14:18:40.089: W/AiAiAutofill(5338):   at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
11-23 14:18:40.089: W/AiAiAutofill(5338):   at ctg.run(Unknown Source:144)
11-23 14:18:40.089: W/AiAiAutofill(5338):   at java.lang.Thread.run(Thread.java:923)
11-23 14:18:40.106: D/PermissionCache(586): checking android.permission.READ_FRAME_BUFFER for uid=1000 => granted (79 us)
11-23 14:18:40.115: D/NetworkSecurityConfig(23972): No Network Security Config specified, using platform default
11-23 14:18:40.115: D/NetworkSecurityConfig(23972): No Network Security Config specified, using platform default
11-23 14:18:40.127: I/WallpaperService(4163): engine resumed
11-23 14:18:40.127: I/DOTNET(23972): JNI_OnLoad: JNI_OnLoad in pal_jni.c
11-23 14:18:40.127: D/DOTNET(23972): GetOptionalClassGRef: optional class com/android/org/conscrypt/OpenSSLEngineImpl was not found
11-23 14:18:40.128: I/sensors-hal(898): [hal]batch_physical_sensor:301, android.sensor.gyroscope/41, period=20000000, max_latency=0
11-23 14:18:40.128: I/sensors-hal(898): [hal]batch_physical_sensor:310, android.sensor.gyroscope/41, period=20000000, max_latency=0 request completed
11-23 14:18:40.128: I/sensors-hal(898): [hal]activate_physical_sensor:238, android.sensor.gyroscope/41 en=1
11-23 14:18:40.128: I/sensors-hal(898): [ssc_utils]get_qmi_debug_flag:244, support_qmi_debug : false
11-23 14:18:40.130: W/sensors@2.0-ser(898): type=1400 audit(0.0:516): avc: denied { read write } for name="diag" dev="tmpfs" ino=10311 scontext=u:r:hal_sensors_default:s0 tcontext=u:object_r:diag_device:s0 tclass=chr_file permissive=0
11-23 14:18:40.133: W/sensors@2.0-ser(898): type=1400 audit(0.0:517): avc: denied { read write } for name="diag" dev="tmpfs" ino=10311 scontext=u:r:hal_sensors_default:s0 tcontext=u:object_r:diag_device:s0 tclass=chr_file permissive=0
11-23 14:18:40.132: D/Diag_Lib(898):  Diag_LSM_Init: Failed to open handle to diag driver, error = 13
11-23 14:18:40.133: D/Diag_Lib(898):  Diag_LSM_Init: Failed to open handle to diag driver, error = 13
11-23 14:18:40.133: I/sensors-hal(898): [ssc_sensor]update_handle:537, handle=331, type=33, wakeup=0, hwid=0, base=331
11-23 14:18:40.135: I/sensors-hal(898): [ssc_utils]get_qmi_debug_flag:244, support_qmi_debug : false
11-23 14:18:40.140: I/sensors-hal(898): [ssc_utils]get_qmi_debug_flag:244, support_qmi_debug : false
11-23 14:18:40.140: I/sensors-hal(898): [ssc_sensor]ssc_conn_resp_cb:663, resp_value = 0
11-23 14:18:40.144: I/sensors-hal(898): [hal]activate_physical_sensor:249, android.sensor.gyroscope/41 en=1 completed
11-23 14:18:40.147: I/WallpaperService(4163): engine paused
11-23 14:18:40.148: I/sensors-hal(898): [hal]activate_physical_sensor:238, android.sensor.gyroscope/41 en=0
11-23 14:18:40.150: E/QMI_FW(898): QCCI qmi_cci_xport_recv: txn not found. svc_id: 400
11-23 14:18:40.153: D/Diag_Lib(898): diag: Diag_LSM_DeInit done for pid: 898
11-23 14:18:40.153: D/Diag_Lib(898): diag: Diag_LSM_DeInit done for pid: 898
11-23 14:18:40.154: I/sensors-hal(898): [hal]activate_physical_sensor:249, android.sensor.gyroscope/41 en=0 completed
11-23 14:18:40.163: W/DisplayIdentification(586): Invalid EDID: falling back to serial number due to missing display name.
11-23 14:18:40.163: W/DisplayIdentification(586): Invalid EDID: falling back to ASCII text due to missing serial number.
11-23 14:18:40.170: I/AdrenoGLES-0(1612): QUALCOMM build                   : 4783c89, I46ff5fc46f
11-23 14:18:40.170: I/AdrenoGLES-0(1612): Build Date                       : 11/30/20
11-23 14:18:40.170: I/AdrenoGLES-0(1612): OpenGL ES Shader Compiler Version: EV031.31.04.01
11-23 14:18:40.170: I/AdrenoGLES-0(1612): Local Branch                     : QPR2
11-23 14:18:40.170: I/AdrenoGLES-0(1612): Remote Branch                    : 
11-23 14:18:40.170: I/AdrenoGLES-0(1612): Remote Branch                    : 
11-23 14:18:40.170: I/AdrenoGLES-0(1612): Reconstruct Branch               : 
11-23 14:18:40.170: I/AdrenoGLES-0(1612): Build Config                     : S P 10.0.4 AArch64
11-23 14:18:40.170: I/AdrenoGLES-0(1612): Driver Path                      : /vendor/lib64/egl/libGLESv2_adreno.so
11-23 14:18:40.179: I/AdrenoGLES-0(1612): PFP: 0x016dd090, ME: 0x00000000
11-23 14:18:40.198: W/monodroid-gc(23972): GREF GC Threshold: 46080
11-23 14:18:40.231: D/TelephonyProvider(4478): Using old permission behavior for telephony provider compat
11-23 14:18:40.304: D/BoundBrokerSvc(19164): onBind: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:40.304: D/BoundBrokerSvc(19164): Loading bound service for intent: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:40.312: D/BoundBrokerSvc(19164): onUnbind: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:40.328: D/BoundBrokerSvc(19164): onBind: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:40.328: D/BoundBrokerSvc(19164): Loading bound service for intent: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:40.335: D/BoundBrokerSvc(19164): onUnbind: Intent { act=com.google.android.gms.common.BIND_SHARED_PREFS pkg=com.google.android.gms }
11-23 14:18:40.373: W/DataCollectionRegistryC(19164): missing CollectionDefinition for phonedeviceverification-pa.googleapis.com/google.internal.communications.phonedeviceverification.v1.PhoneDeviceVerification/GetConsent
11-23 14:18:40.381: D/ConnectivityService(1612): requestNetwork for uid/pid:10205/21684 NetworkRequest [ TRACK_DEFAULT id=111, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED Uid: 10205 AdministratorUids: [] RequestorUid: 10205 RequestorPackageName: com.android.chrome] ]
11-23 14:18:40.381: D/ConnectivityService(1612): NetReassign [111 : null → 100]
11-23 14:18:40.381: D/UntrustedWifiNetworkFactory(1612): got request NetworkRequest [ TRACK_DEFAULT id=111, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED Uid: 10205 AdministratorUids: [] RequestorUid: 10205 RequestorPackageName: com.android.chrome] ] with score 60 and providerId 5
11-23 14:18:40.381: D/WifiNetworkFactory(1612): got request NetworkRequest [ TRACK_DEFAULT id=111, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED Uid: 10205 AdministratorUids: [] RequestorUid: 10205 RequestorPackageName: com.android.chrome] ] with score 60 and providerId 5
11-23 14:18:40.382: D/Ethernet(1612): got request NetworkRequest [ TRACK_DEFAULT id=111, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED Uid: 10205 AdministratorUids: [] RequestorUid: 10205 RequestorPackageName: com.android.chrome] ] with score 60 and providerId 5
11-23 14:18:40.382: D/WIFI_AWARE_FACTORY(1612): got request NetworkRequest [ TRACK_DEFAULT id=111, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED Uid: 10205 AdministratorUids: [] RequestorUid: 10205 RequestorPackageName: com.android.chrome] ] with score 60 and providerId 5
11-23 14:18:40.383: D/PhoneSwitcherNetworkRequstListener(4478): got request NetworkRequest [ TRACK_DEFAULT id=111, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED Uid: 10205 AdministratorUids: [] RequestorUid: 10205 RequestorPackageName: com.android.chrome] ] with score 60 and providerId 5
11-23 14:18:40.385: D/ConnectivityService(1612): NetReassign [no changes]
11-23 14:18:40.389: E/cr_BTSPrefs(21684): No data found for task id: 53
11-23 14:18:40.389: E/cr_BkgrdTaskScheduler(21684): Task cannot be canceled because no data was found instorage or data was invalid
11-23 14:18:40.560: W/UiDevice(23757): Skipping null root node for window: AccessibilityWindowInfo[title=Device Details, displayId=0, id=66, type=TYPE_APPLICATION, layer=0, region=SkRegion((0,0,1080,2340)), bounds=Rect(0, 0 - 1080, 2340), focused=true, active=true, pictureInPicture=false, hasParent=false, isAnchored=false, hasChildren=false]
11-23 14:18:40.585: D/AndroidRuntime(23972): Shutting down VM
11-23 14:18:40.585: D/AndroidRuntime(23972): --------- beginning of crash
11-23 14:18:40.585: E/AndroidRuntime(23972): FATAL EXCEPTION: main
11-23 14:18:40.585: E/AndroidRuntime(23972): Process: com.nextdesk.app, PID: 23972
11-23 14:18:40.585: E/AndroidRuntime(23972): android.runtime.JavaProxyThrowable: System.NullReferenceException: Object reference not set to an instance of an object
11-23 14:18:40.585: E/AndroidRuntime(23972):    at Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.SetupDefaults(MauiAppBuilder builder)
11-23 14:18:40.585: E/AndroidRuntime(23972):    at Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.UseMauiApp[App](MauiAppBuilder builder)
11-23 14:18:40.585: E/AndroidRuntime(23972):    at NextDesk.App.MauiProgram.CreateMauiApp()
11-23 14:18:40.585: E/AndroidRuntime(23972):    at NextDesk.App.Platforms.Android.MainApplication.CreateMauiApp()
11-23 14:18:40.585: E/AndroidRuntime(23972):    at Microsoft.Maui.MauiApplication.OnCreate()
11-23 14:18:40.585: E/AndroidRuntime(23972):    at Android.App.Application.n_OnCreate(IntPtr , IntPtr )
11-23 14:18:40.585: E/AndroidRuntime(23972):    at Android.Runtime.JNINativeWrapper.Wrap_JniMarshal_PP_V(_JniMarshal_PP_V , IntPtr , IntPtr )
11-23 14:18:40.585: E/AndroidRuntime(23972):    at crc6488302ad6e9e4df1a.MauiApplication.n_onCreate(Native Method)
11-23 14:18:40.585: E/AndroidRuntime(23972):    at crc6488302ad6e9e4df1a.MauiApplication.onCreate(Unknown Source:0)
11-23 14:18:40.585: E/AndroidRuntime(23972):    at android.app.Instrumentation.callApplicationOnCreate(Instrumentation.java:1192)
11-23 14:18:40.585: E/AndroidRuntime(23972):    at android.app.ActivityThread.handleBindApplication(ActivityThread.java:6719)
11-23 14:18:40.585: E/AndroidRuntime(23972):    at android.app.ActivityThread.access$1300(ActivityThread.java:237)
11-23 14:18:40.585: E/AndroidRuntime(23972):    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1913)
11-23 14:18:40.585: E/AndroidRuntime(23972):    at android.os.Handler.dispatchMessage(Handler.java:106)
11-23 14:18:40.585: E/AndroidRuntime(23972):    at android.os.Looper.loop(Looper.java:223)
11-23 14:18:40.585: E/AndroidRuntime(23972):    at android.app.ActivityThread.main(ActivityThread.java:7664)
11-23 14:18:40.585: E/AndroidRuntime(23972):    at java.lang.reflect.Method.invoke(Native Method)
11-23 14:18:40.585: E/AndroidRuntime(23972):    at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:592)
11-23 14:18:40.585: E/AndroidRuntime(23972):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:947)
11-23 14:18:40.588: W/monodroid-assembly(23972): Shared library 'liblog' not loaded, p/invoke '__android_log_print' may fail
11-23 14:18:40.593: I/MonoDroid(23972): UNHANDLED EXCEPTION:
11-23 14:18:40.598: I/MonoDroid(23972): Android.Runtime.JavaProxyThrowable: Exception_WasThrown, Android.Runtime.JavaProxyThrowable
11-23 14:18:40.598: I/MonoDroid(23972):   --- End of managed Android.Runtime.JavaProxyThrowable stack trace ---
11-23 14:18:40.598: I/MonoDroid(23972): android.runtime.JavaProxyThrowable: System.NullReferenceException: Object reference not set to an instance of an object
11-23 14:18:40.598: I/MonoDroid(23972):    at Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.SetupDefaults(MauiAppBuilder builder)
11-23 14:18:40.598: I/MonoDroid(23972):    at Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.UseMauiApp[App](MauiAppBuilder builder)
11-23 14:18:40.598: I/MonoDroid(23972):    at NextDesk.App.MauiProgram.CreateMauiApp()
11-23 14:18:40.598: I/MonoDroid(23972):    at NextDesk.App.Platforms.Android.MainApplication.CreateMauiApp()
11-23 14:18:40.598: I/MonoDroid(23972):    at Microsoft.Maui.MauiApplication.OnCreate()
11-23 14:18:40.598: I/MonoDroid(23972):    at Android.App.Application.n_OnCreate(IntPtr , IntPtr )
11-23 14:18:40.598: I/MonoDroid(23972):    at Android.Runtime.JNINativeWrapper.Wrap_JniMarshal_PP_V(_JniMarshal_PP_V , IntPtr , IntPtr )
11-23 14:18:40.599: I/MonoDroid(23972):     at crc6488302ad6e9e4df1a.MauiApplication.n_onCreate(Native Method)
11-23 14:18:40.599: I/MonoDroid(23972):     at crc6488302ad6e9e4df1a.MauiApplication.onCreate(Unknown Source:0)
11-23 14:18:40.599: I/MonoDroid(23972):     at android.app.Instrumentation.callApplicationOnCreate(Instrumentation.java:1192)
11-23 14:18:40.599: I/MonoDroid(23972):     at android.app.ActivityThread.handleBindApplication(ActivityThread.java:6719)
11-23 14:18:40.599: I/MonoDroid(23972):     at android.app.ActivityThread.access$1300(ActivityThread.java:237)
11-23 14:18:40.599: I/MonoDroid(23972):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1913)
11-23 14:18:40.599: I/MonoDroid(23972):     at android.os.Handler.dispatchMessage(Handler.java:106)
11-23 14:18:40.599: I/MonoDroid(23972):     at android.os.Looper.loop(Looper.java:223)
11-23 14:18:40.599: I/MonoDroid(23972):     at android.app.ActivityThread.main(ActivityThread.java:7664)
11-23 14:18:40.599: I/MonoDroid(23972):     at java.lang.reflect.Method.invoke(Native Method)
11-23 14:18:40.599: I/MonoDroid(23972):     at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:592)
11-23 14:18:40.599: I/MonoDroid(23972):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:947)
11-23 14:18:40.599: I/MonoDroid(23972):   --- End of managed Android.Runtime.JavaProxyThrowable stack trace ---
11-23 14:18:40.599: I/MonoDroid(23972): android.runtime.JavaProxyThrowable: System.NullReferenceException: Object reference not set to an instance of an object
11-23 14:18:40.599: I/MonoDroid(23972):    at Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.SetupDefaults(MauiAppBuilder builder)
11-23 14:18:40.599: I/MonoDroid(23972):    at Microsoft.Maui.Controls.Hosting.AppHostBuilderExtensions.UseMauiApp[App](MauiAppBuilder builder)
11-23 14:18:40.599: I/MonoDroid(23972):    at NextDesk.App.MauiProgram.CreateMauiApp()
11-23 14:18:40.599: I/MonoDroid(23972):    at NextDesk.App.Platforms.Android.MainApplication.CreateMauiApp()
11-23 14:18:40.599: I/MonoDroid(23972):    at Microsoft.Maui.MauiApplication.OnCreate()
11-23 14:18:40.599: I/MonoDroid(23972):    at Android.App.Application.n_OnCreate(IntPtr , IntPtr )
11-23 14:18:40.599: I/MonoDroid(23972):    at Android.Runtime.JNINativeWrapper.Wrap_JniMarshal_PP_V(_JniMarshal_PP_V , IntPtr , IntPtr )
11-23 14:18:40.599: I/MonoDroid(23972):     at crc6488302ad6e9e4df1a.MauiApplication.n_onCreate(Native Method)
11-23 14:18:40.599: I/MonoDroid(23972):     at crc6488302ad6e9e4df1a.MauiApplication.onCreate(Unknown Source:0)
11-23 14:18:40.599: I/MonoDroid(23972):     at android.app.Instrumentation.callApplicationOnCreate(Instrumentation.java:1192)
11-23 14:18:40.599: I/MonoDroid(23972):     at android.app.ActivityThread.handleBindApplication(ActivityThread.java:6719)
11-23 14:18:40.599: I/MonoDroid(23972):     at android.app.ActivityThread.access$1300(ActivityThread.java:237)
11-23 14:18:40.599: I/MonoDroid(23972):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1913)
11-23 14:18:40.599: I/MonoDroid(23972):     at android.os.Handler.dispatchMessage(Handler.java:106)
11-23 14:18:40.599: I/MonoDroid(23972):     at android.os.Looper.loop(Looper.java:223)
11-23 14:18:40.599: I/MonoDroid(23972):     at android.app.ActivityThread.main(ActivityThread.java:7664)
11-23 14:18:40.599: I/MonoDroid(23972):     at java.lang.reflect.Method.invoke(Native Method)
11-23 14:18:40.599: I/MonoDroid(23972):     at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:592)
11-23 14:18:40.599: I/MonoDroid(23972):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:947)
11-23 14:18:40.602: I/DropBoxManagerService(1612): add tag=data_app_crash isTagEnabled=true flags=0x2
11-23 14:18:40.602: W/ActivityTaskManager(1612):   Force finishing activity com.nextdesk.app/crc6459b42d67be339a8c.MainActivity
11-23 14:18:40.613: W/BroadcastQueue(1612): Background execution not allowed: receiving Intent { act=android.intent.action.DROPBOX_ENTRY_ADDED flg=0x10 (has extras) } to com.google.android.gms/.stats.service.DropBoxEntryAddedReceiver
11-23 14:18:40.614: W/BroadcastQueue(1612): Background execution not allowed: receiving Intent { act=android.intent.action.DROPBOX_ENTRY_ADDED flg=0x10 (has extras) } to com.google.android.gms/.chimera.GmsIntentOperationService$PersistentTrustedReceiver
11-23 14:18:40.625: I/Process(23972): Sending signal. PID: 23972 SIG: 9
11-23 14:18:40.652: I/Zygote(867): Process 23972 exited due to signal 9 (Killed)
11-23 14:18:40.873: I/ActivityManager(1612): Process com.nextdesk.app (pid 23972) has died: prcp TOP 
11-23 14:18:40.874: I/libprocessgroup(1612): Successfully killed process cgroup uid 10273 pid 23972 in 0ms
11-23 14:18:40.889: W/WindowManager(1612): Cannot find window which accessibility connection is added to
11-23 14:18:40.889: W/WindowManager(1612): Failed looking up window session=Session{4bbacb4 1612:1000} callers=com.android.server.wm.WindowManagerService.windowForClientLocked:5435 com.android.server.wm.WindowManagerService.removeWindow:1898 com.android.server.wm.Session.remove:193 
11-23 14:18:40.895: I/BackdropActivity(21927): onResume()
11-23 14:18:40.900: I/ActivityTaskManager(1612): Activity requesting to dismiss Keyguard: ActivityRecord{a88daf0 u0 com.google.android.apps.mtaas.backdrop/.BackdropActivity t8}
11-23 14:18:40.961: D/BoundBrokerSvc(18736): onBind: Intent { act=com.google.android.gms.udc.service.START dat=chimera-action: cmp=com.google.android.gms/.chimera.PersistentApiService }
11-23 14:18:40.962: D/BoundBrokerSvc(18736): Loading bound service for intent: Intent { act=com.google.android.gms.udc.service.START dat=chimera-action: cmp=com.google.android.gms/.chimera.PersistentApiService }
11-23 14:18:41.104: W/ActivityTaskManager(1612): Activity top resumed state loss timeout for ActivityRecord{e0cdedd u0 com.nextdesk.app/crc6459b42d67be339a8c.MainActivity t-1 f}}
11-23 14:18:41.404: D/ConnectivityService(1612): NetReassign [no changes]
11-23 14:18:41.447: W/ActivityManager(1612): Background start not allowed: service Intent { cmp=com.google.android.apps.messaging/.shared.datamodel.action.execution.ActionExecutorImpl$EmptyService } to com.google.android.apps.messaging/.shared.datamodel.action.execution.ActionExecutorImpl$EmptyService from pid=21993 uid=10225 pkg=com.google.android.apps.messaging startFg?=false
11-23 14:18:41.448: W/BugleDataModel(21993): ActionExecutorImpl: Action started execution, but we can't guarantee it will complete, the app may be killed. Action: class com.google.android.apps.messaging.shared.datamodel.action.ProcessPendingMessagesAction-ProcessPendingMessagesAction:3451889007
11-23 14:18:41.448: W/BugleDataModel(21993): java.lang.IllegalStateException: Not allowed to start service Intent { cmp=com.google.android.apps.messaging/.shared.datamodel.action.execution.ActionExecutorImpl$EmptyService }: app is in background uid UidRecord{31f8ca8 u0a225 CEM  idle change:cached procs:1 seq(0,0,0)}
11-23 14:18:41.448: W/BugleDataModel(21993):    at android.app.ContextImpl.startServiceCommon(ContextImpl.java:1715)
11-23 14:18:41.448: W/BugleDataModel(21993):    at android.app.ContextImpl.startService(ContextImpl.java:1670)
11-23 14:18:41.448: W/BugleDataModel(21993):    at android.content.ContextWrapper.startService(ContextWrapper.java:720)
11-23 14:18:41.448: W/BugleDataModel(21993):    at com.google.android.apps.messaging.shared.datamodel.action.execution.ActionExecutorImpl.j(PG:1)
11-23 14:18:41.448: W/BugleDataModel(21993):    at com.google.android.apps.messaging.shared.datamodel.action.execution.ActionExecutorImpl.a(PG:1)
11-23 14:18:41.448: W/BugleDataModel(21993):    at kxs.j(PG:5)
11-23 14:18:41.448: W/BugleDataModel(21993):    at kxp.run(Unknown Source:1)
11-23 14:18:41.448: W/BugleDataModel(21993):    at asje.run(PG:2)
11-23 14:18:41.448: W/BugleDataModel(21993):    at android.os.Handler.handleCallback(Handler.java:938)
11-23 14:18:41.448: W/BugleDataModel(21993):    at android.os.Handler.dispatchMessage(Handler.java:99)
11-23 14:18:41.448: W/BugleDataModel(21993):    at android.os.Looper.loop(Looper.java:223)
11-23 14:18:41.448: W/BugleDataModel(21993):    at android.app.ActivityThread.main(ActivityThread.java:7664)
11-23 14:18:41.448: W/BugleDataModel(21993):    at java.lang.reflect.Method.invoke(Native Method)
11-23 14:18:41.448: W/BugleDataModel(21993):    at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:592)
11-23 14:18:41.448: W/BugleDataModel(21993):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:947)
11-23 14:18:41.469: I/BugleDataModel(21993): PendingMessagesProcessor: process from ProcessPendingMessagesAction due to scheduled processing with queues:
11-23 14:18:41.495: W/BugleDataModel(21993): ActionExecutorImpl: Action started execution, but we can't guarantee it will complete, the app may be killed. Action: class com.google.android.apps.messaging.shared.datamodel.action.ProcessPendingMessagesAction-ProcessPendingMessagesAction:3451889008
11-23 14:18:41.495: W/BugleDataModel(21993): java.lang.IllegalStateException: Not allowed to start service Intent { cmp=com.google.android.apps.messaging/.shared.datamodel.action.execution.ActionExecutorImpl$EmptyService }: app is in background uid UidRecord{31f8ca8 u0a225 CEM  idle change:cached procs:1 seq(0,0,0)}
11-23 14:18:41.495: W/BugleDataModel(21993):    at android.app.ContextImpl.startServiceCommon(ContextImpl.java:1715)
11-23 14:18:41.495: W/BugleDataModel(21993):    at android.app.ContextImpl.startService(ContextImpl.java:1670)
11-23 14:18:41.495: W/BugleDataModel(21993):    at android.content.ContextWrapper.startService(ContextWrapper.java:720)
11-23 14:18:41.495: W/BugleDataModel(21993):    at com.google.android.apps.messaging.shared.datamodel.action.execution.ActionExecutorImpl.j(PG:1)
11-23 14:18:41.495: W/BugleDataModel(21993):    at com.google.android.apps.messaging.shared.datamodel.action.execution.ActionExecutorImpl.a(PG:1)
11-23 14:18:41.495: W/BugleDataModel(21993):    at kxs.j(PG:5)
11-23 14:18:41.495: W/BugleDataModel(21993):    at kxp.run(Unknown Source:1)
11-23 14:18:41.495: W/BugleDataModel(21993):    at asje.run(PG:2)
11-23 14:18:41.495: W/BugleDataModel(21993):    at android.os.Handler.handleCallback(Handler.java:938)
11-23 14:18:41.495: W/BugleDataModel(21993):    at android.os.Handler.dispatchMessage(Handler.java:99)
11-23 14:18:41.495: W/BugleDataModel(21993):    at android.os.Looper.loop(Looper.java:223)
11-23 14:18:41.495: W/BugleDataModel(21993):    at android.app.ActivityThread.main(ActivityThread.java:7664)
11-23 14:18:41.495: W/BugleDataModel(21993):    at java.lang.reflect.Method.invoke(Native Method)
11-23 14:18:41.495: W/BugleDataModel(21993):    at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:592)
11-23 14:18:41.495: W/BugleDataModel(21993):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:947)
11-23 14:18:41.496: W/BugleDataModel(21993): ActionExecutorImpl: Action started execution, but we can't guarantee it will complete, the app may be killed. Action: class com.google.android.apps.messaging.shared.datamodel.action.ProcessPendingMessagesAction-ProcessPendingMessagesAction:3451889009
11-23 14:18:41.496: W/BugleDataModel(21993): java.lang.IllegalStateException: Not allowed to start service Intent { cmp=com.google.android.apps.messaging/.shared.datamodel.action.execution.ActionExecutorImpl$EmptyService }: app is in background uid UidRecord{31f8ca8 u0a225 CEM  idle change:cached procs:1 seq(0,0,0)}
11-23 14:18:41.496: W/BugleDataModel(21993):    at android.app.ContextImpl.startServiceCommon(ContextImpl.java:1715)
11-23 14:18:41.496: W/BugleDataModel(21993):    at android.app.ContextImpl.startService(ContextImpl.java:1670)
11-23 14:18:41.496: W/BugleDataModel(21993):    at android.content.ContextWrapper.startService(ContextWrapper.java:720)
11-23 14:18:41.496: W/BugleDataModel(21993):    at com.google.android.apps.messaging.shared.datamodel.action.execution.ActionExecutorImpl.j(PG:1)
11-23 14:18:41.496: W/BugleDataModel(21993):    at com.google.android.apps.messaging.shared.datamodel.action.execution.ActionExecutorImpl.a(PG:1)
11-23 14:18:41.496: W/BugleDataModel(21993):    at kxs.j(PG:5)
11-23 14:18:41.496: W/BugleDataModel(21993):    at kxp.run(Unknown Source:1)
11-23 14:18:41.496: W/BugleDataModel(21993):    at asje.run(PG:2)
11-23 14:18:41.496: W/BugleDataModel(21993):    at android.os.Handler.handleCallback(Handler.java:938)
11-23 14:18:41.496: W/BugleDataModel(21993):    at android.os.Handler.dispatchMessage(Handler.java:99)
11-23 14:18:41.496: W/BugleDataModel(21993):    at android.os.Looper.loop(Looper.java:223)
11-23 14:18:41.496: W/BugleDataModel(21993):    at android.app.ActivityThread.main(ActivityThread.java:7664)
11-23 14:18:41.496: W/BugleDataModel(21993):    at java.lang.reflect.Method.invoke(Native Method)
11-23 14:18:41.496: W/BugleDataModel(21993):    at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:592)
11-23 14:18:41.496: W/BugleDataModel(21993):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:947)
11-23 14:18:41.520: W/BugleDataModel(21993): ActionExecutorImpl: Action started execution, but we can't guarantee it will complete, the app may be killed. Action: class com.google.android.apps.messaging.shared.datamodel.action.ProcessPendingMessagesAction-ProcessPendingMessagesAction:3451889010
11-23 14:18:41.520: W/BugleDataModel(21993): java.lang.IllegalStateException: Not allowed to start service Intent { cmp=com.google.android.apps.messaging/.shared.datamodel.action.execution.ActionExecutorImpl$EmptyService }: app is in background uid UidRecord{31f8ca8 u0a225 CEM  idle change:cached procs:1 seq(0,0,0)}
11-23 14:18:41.520: W/BugleDataModel(21993):    at android.app.ContextImpl.startServiceCommon(ContextImpl.java:1715)
11-23 14:18:41.520: W/BugleDataModel(21993):    at android.app.ContextImpl.startService(ContextImpl.java:1670)
11-23 14:18:41.520: W/BugleDataModel(21993):    at android.content.ContextWrapper.startService(ContextWrapper.java:720)
11-23 14:18:41.520: W/BugleDataModel(21993):    at com.google.android.apps.messaging.shared.datamodel.action.execution.ActionExecutorImpl.j(PG:1)
11-23 14:18:41.520: W/BugleDataModel(21993):    at com.google.android.apps.messaging.shared.datamodel.action.execution.ActionExecutorImpl.a(PG:1)
11-23 14:18:41.520: W/BugleDataModel(21993):    at kxs.j(PG:5)
11-23 14:18:41.520: W/BugleDataModel(21993):    at kxp.run(Unknown Source:1)
11-23 14:18:41.520: W/BugleDataModel(21993):    at asje.run(PG:2)
11-23 14:18:41.520: W/BugleDataModel(21993):    at android.os.Handler.handleCallback(Handler.java:938)
11-23 14:18:41.520: W/BugleDataModel(21993):    at android.os.Handler.dispatchMessage(Handler.java:99)
11-23 14:18:41.520: W/BugleDataModel(21993):    at android.os.Looper.loop(Looper.java:223)
11-23 14:18:41.520: W/BugleDataModel(21993):    at android.app.ActivityThread.main(ActivityThread.java:7664)
11-23 14:18:41.520: W/BugleDataModel(21993):    at java.lang.reflect.Method.invoke(Native Method)
11-23 14:18:41.520: W/BugleDataModel(21993):    at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:592)
11-23 14:18:41.520: W/BugleDataModel(21993):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:947)
11-23 14:18:41.534: I/BugleDataModel(21993): PendingMessagesProcessor: process from ProcessPendingMessagesAction due to scheduled processing with queues:
11-23 14:18:41.555: I/chatty(21993): uid=10225(com.google.android.apps.messaging) Blocking Thread identical 1 line
11-23 14:18:41.575: I/BugleDataModel(21993): PendingMessagesProcessor: process from ProcessPendingMessagesAction due to scheduled processing with queues:
11-23 14:18:41.578: W/BugleDataModel(21993): ActionExecutorImpl: Action started execution, but we can't guarantee it will complete, the app may be killed. Action: class com.google.android.apps.messaging.shared.datamodel.action.ProcessPendingMessagesAction-ProcessPendingMessagesAction:3451889011
11-23 14:18:41.578: W/BugleDataModel(21993): java.lang.IllegalStateException: Not allowed to start service Intent { cmp=com.google.android.apps.messaging/.shared.datamodel.action.execution.ActionExecutorImpl$EmptyService }: app is in background uid UidRecord{31f8ca8 u0a225 CEM  idle change:cached procs:1 seq(0,0,0)}
11-23 14:18:41.578: W/BugleDataModel(21993):    at android.app.ContextImpl.startServiceCommon(ContextImpl.java:1715)
11-23 14:18:41.578: W/BugleDataModel(21993):    at android.app.ContextImpl.startService(ContextImpl.java:1670)
11-23 14:18:41.578: W/BugleDataModel(21993):    at android.content.ContextWrapper.startService(ContextWrapper.java:720)
11-23 14:18:41.578: W/BugleDataModel(21993):    at com.google.android.apps.messaging.shared.datamodel.action.execution.ActionExecutorImpl.j(PG:1)
11-23 14:18:41.578: W/BugleDataModel(21993):    at com.google.android.apps.messaging.shared.datamodel.action.execution.ActionExecutorImpl.a(PG:1)
11-23 14:18:41.578: W/BugleDataModel(21993):    at kxs.j(PG:5)
11-23 14:18:41.578: W/BugleDataModel(21993):    at kxp.run(Unknown Source:1)
11-23 14:18:41.578: W/BugleDataModel(21993):    at asje.run(PG:2)
11-23 14:18:41.578: W/BugleDataModel(21993):    at android.os.Handler.handleCallback(Handler.java:938)
11-23 14:18:41.578: W/BugleDataModel(21993):    at android.os.Handler.dispatchMessage(Handler.java:99)
11-23 14:18:41.578: W/BugleDataModel(21993):    at android.os.Looper.loop(Looper.java:223)
11-23 14:18:41.578: W/BugleDataModel(21993):    at android.app.ActivityThread.main(ActivityThread.java:7664)
11-23 14:18:41.578: W/BugleDataModel(21993):    at java.lang.reflect.Method.invoke(Native Method)
11-23 14:18:41.578: W/BugleDataModel(21993):    at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:592)
11-23 14:18:41.578: W/BugleDataModel(21993):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:947)
Xilmirius commented 10 months ago

I forgot to mention that I can install and USE the app in different phones :)

Xilmirius commented 10 months ago

Never mind i was my fault, i did upgrade to net 8 and after went back to 7 and for sure that create a monster