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

[Bug]: java.lang.Exception - Service class I6.a could not be instantiated #695

Open
2 of 3 tasks
SamedHrmn opened this issue Jul 10, 2023 · 4 comments
Open
2 of 3 tasks

Comments

@SamedHrmn
Copy link

SamedHrmn commented Jul 10, 2023

What happened?

I got an errors like these in firebase crashlytics about of one signal in my production app. I cant get any error during debug mode. Our debug logs looks fine. I can't understand the problem.

Here OneSignal implenetation for my app.

class OneSignalUtil {
  static OneSignalUtil? _instance;

  OneSignalUtil._();

  factory OneSignalUtil() {
    return _instance ??= OneSignalUtil._();
  }

  Future<void> init() async {
    if (kDebugMode) {
      OneSignal.Debug.setLogLevel(OSLogLevel.debug);
    }

    try {
      OneSignal.initialize(AppConstant.oneSignalAppId);
      if (Platform.isIOS) {
        OneSignal.setLaunchURLsInApp(true);
      }
      await addPushNotification();
    } catch (e) {
      log(e.toString());
    }
  }

  Future<void> addPushNotification() async {
    try {
      await OneSignal.User.pushSubscription.optIn();
    } catch (e) {
      log(e.toString());
    }
  }

  Future<void> stopReceiveNotification() async {
    try {
      await OneSignal.User.pushSubscription.optOut();
    } catch (e) {
      log(e.toString());
    }
  }

  void onNotificationDisplayListener() {
    try {
      OneSignal.Notifications.addForegroundWillDisplayListener((event) {
        log('NOTIFICATION WILL DISPLAY LISTENER CALLED WITH: ${event.notification.jsonRepresentation()}');

        /// Display Notification, preventDefault to not display
        event.preventDefault();

        /// Do async work
        /// notification.display() to display after preventing default
        event.notification.display();
      });
    } catch (e) {
      log(e.toString());
    }
  }

  void onNotificationClickListener() {
    try {
      OneSignal.Notifications.addClickListener((event) {
        log('NOTIFICATION CLICK LISTENER CALLED WITH EVENT: ${event.notification.jsonRepresentation()}');
      });
    } catch (e) {
      log(e.toString());
    }
  }

  Future<void> setExternalUserIdAndEmail({required String userUid, String? email}) async {
    try {
      OneSignal.login(userUid);
      OneSignal.User.addEmail(email ?? '_');
    } catch (e) {
      log(e.toString());
    }
  }

  Future<void> removeExternalUserId() async {
    //await OneSignal.logout();
  }

  void inAppMessageListener() {
    try {
      OneSignal.InAppMessages.addWillDisplayListener((event) {
        log("ON WILL DISPLAY IN APP MESSAGE ${event.message.messageId}");
      });

      OneSignal.InAppMessages.addDidDisplayListener((event) {
        log("ON DID DISPLAY IN APP MESSAGE ${event.message.messageId}");
      });

      OneSignal.InAppMessages.addWillDismissListener((event) {
        log("ON WILL DISMISS IN APP MESSAGE ${event.message.messageId}");
      });

      OneSignal.InAppMessages.addDidDismissListener((event) {
        log("ON DID DISMISS IN APP MESSAGE ${event.message.messageId}");
      });

      OneSignal.InAppMessages.addClickListener((event) {
        log(event.result.actionId ?? 'null action id');
      });
    } catch (e) {
      log(e.toString());
    }
  }

  Future<void> logEvent({required Map<String, dynamic> params}) async {
    try {
      await OneSignal.User.addTags(params);
    } catch (e) {
      log(e.toString());
    }
  }
}



//---------------------------------------

void main() async {
  runZonedGuarded<Future<void>>(() async {
    final widgetsBinding = WidgetsFlutterBinding.ensureInitialized();
    FlutterNativeSplash.preserve(widgetsBinding: widgetsBinding);
    await OneSignalUtil().init();  
  });
}

Flutter doctor -v:

[√] Flutter (Channel stable, 3.10.5, on Microsoft Windows [Version 10.0.19044.3086], locale tr-TR)
    • Flutter version 3.10.5 on channel stable at C:\Users\samed\SDK\flutter
    • Upstream repository https://github.com/flutter/flutter.git
    • Framework revision 796c8ef792 (4 weeks ago), 2023-06-13 15:51:02 -0700
    • Engine revision 45f6e00911
    • Dart version 3.0.5
    • DevTools version 2.23.1

[√] Windows Version (Installed version of Windows is version 10 or higher)  

[√] Android toolchain - develop for Android devices (Android SDK version 33.0.0)
    • Android SDK at C:\Users\samed\SDK\android
    • Platform android-33, build-tools 33.0.0
    • ANDROID_SDK_ROOT = C:\Users\samed\SDK\android
    • Java binary at: C:\Program Files (x86)\AndroidStudio\jbr\bin\java
    • Java version OpenJDK Runtime Environment (build 17.0.6+0-b2043.56-9586694)
    • All Android licenses accepted.

[√] Chrome - develop for the web
    • Chrome at C:\Program Files\Google\Chrome\Application\chrome.exe

[√] Visual Studio - develop for Windows (Visual Studio Community 2022 17.6.2)
    • Visual Studio at C:\Program Files\Microsoft Visual Studio\2022\Community
    • Visual Studio Community 2022 version 17.6.33723.286
    • Windows 10 SDK version 10.0.20348.0

[√] Android Studio (version 2022.2)
    • Android Studio at C:\Program Files (x86)\AndroidStudio
    • Flutter plugin can be installed from:
       https://plugins.jetbrains.com/plugin/9212-flutter
    • Dart plugin can be installed from:
       https://plugins.jetbrains.com/plugin/6351-dart
    • Java version OpenJDK Runtime Environment (build 17.0.6+0-b2043.56-9586694)

[√] VS Code, 32-bit edition (version 1.80.0)
    • VS Code at C:\Program Files (x86)\Microsoft VS Code
    • Flutter extension version 3.68.0

[√] Connected device (3 available)
    • Windows (desktop) • windows • windows-x64    • Microsoft Windows [Version 10.0.19044.3086]
    • Chrome (web)      • chrome  • web-javascript • Google Chrome 114.0.5735.199
    • Edge (web)        • edge    • web-javascript • Microsoft Edge 114.0.1823.67

[√] Network resources
    • All expected network resources are available.

Steps to reproduce?

-

What did you expect to happen?

No error.

OneSignal Flutter SDK version

5.0.0-beta2

Which platform(s) are affected?

  • iOS
  • Android

Relevant log output

Here crashlytics log:

Fatal Exception: java.lang.RuntimeException: Unable to start receiver com.onesignal.notifications.receivers.BootUpReceiver: java.lang.Exception: Service class K6.a could not be instantiated
       at android.app.ActivityThread.handleReceiver(ActivityThread.java:4116)
       at android.app.ActivityThread.access$1700(ActivityThread.java:244)
       at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2002)
       at android.os.Handler.dispatchMessage(Handler.java:106)
       at android.os.Looper.loop(Looper.java:223)
       at android.app.ActivityThread.main(ActivityThread.java:7753)
       at java.lang.reflect.Method.invoke(Method.java)
       at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:612)
       at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:997)

Caused by java.lang.Exception: Service class K6.a could not be instantiated
       at com.onesignal.common.services.ServiceProvider.getService(ServiceProvider.java:96)
       at com.onesignal.internal.OneSignalImp.initWithContext(OneSignalImp.java:57)
       at com.onesignal.OneSignal.initWithContext(OneSignal.java:10)
       at com.onesignal.notifications.receivers.BootUpReceiver.onReceive(:10)
       at android.app.ActivityThread.handleReceiver(ActivityThread.java:4107)
       at android.app.ActivityThread.access$1700(ActivityThread.java:244)
       at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2002)
       at android.os.Handler.dispatchMessage(Handler.java:106)
       at android.os.Looper.loop(Looper.java:223)
       at android.app.ActivityThread.main(ActivityThread.java:7753)
       at java.lang.reflect.Method.invoke(Method.java)
       at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:612)
       at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:997)

awaitEvenIfOnMainThread task continuation executor1:
       at sun.misc.Unsafe.park(Unsafe.java)
       at java.util.concurrent.locks.LockSupport.park(LockSupport.java:190)
       at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2067)
       at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
       at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1092)
       at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1152)
       at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
       at com.google.firebase.crashlytics.internal.common.ExecutorUtils$1$1.onRun(ExecutorUtils.java:2)
       at com.google.firebase.crashlytics.internal.common.BackgroundPriorityRunnable.run(BackgroundPriorityRunnable.java:5)
       at java.lang.Thread.run(Thread.java:923)

GmsDynamite:
       at java.lang.Object.wait(Object.java)
       at java.lang.Object.wait(Object.java:442)
       at java.lang.Object.wait(Object.java:568)
       at com.google.android.gms.dynamite.zza.run(zza.java:6)

ScionFrontendApi:
       at m.ja.<init>(:com.google.android.gms.dynamite_measurementdynamite@[email protected] (150400-0):24)
       at m.ja.h(:com.google.android.gms.dynamite_measurementdynamite@[email protected] (150400-0):4)
       at com.google.android.gms.measurement.internal.AppMeasurementDynamiteService.initialize(AppMeasurementDynamiteService.java:2)
       at m.de.a(:com.google.android.gms.dynamite_measurementdynamite@[email protected] (150400-0):216)
       at m.al.onTransact(:com.google.android.gms.dynamite_measurementdynamite@[email protected] (150400-0):4)
       at android.os.Binder.transact(Binder.java:1043)
       at com.google.android.gms.internal.measurement.zzbm.zzc(zzbm.java:7)
       at com.google.android.gms.internal.measurement.zzca.initialize(zzca.java:14)
       at com.google.android.gms.internal.measurement.zzcx.zza(zzcx.java:109)
       at com.google.android.gms.internal.measurement.zzdu.run(zzdu.java:12)
       at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
       at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
       at java.lang.Thread.run(Thread.java:923)

pool-6-thread-1:
       at sun.misc.Unsafe.park(Unsafe.java)
       at java.util.concurrent.locks.LockSupport.park(LockSupport.java:190)
       at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2067)
       at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
       at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1092)
       at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1152)
       at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
       at java.lang.Thread.run(Thread.java:923)

WM.task-2:
       at sun.misc.Unsafe.park(Unsafe.java)
       at java.util.concurrent.locks.LockSupport.park(LockSupport.java:190)
       at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2067)
       at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
       at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1092)
       at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1152)
       at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
       at java.lang.Thread.run(Thread.java:923)

Firebase Background Thread #1:
       at sun.misc.Unsafe.park(Unsafe.java)
       at java.util.concurrent.locks.LockSupport.park(LockSupport.java:190)
       at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2067)
       at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
       at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1092)
       at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1152)
       at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
       at com.google.firebase.concurrent.CustomThreadFactory.lambda$newThread$0(CustomThreadFactory.java:13)
       at com.google.firebase.concurrent.CustomThreadFactory$$ExternalSyntheticLambda0.run(R8$$SyntheticClass:13)
       at java.lang.Thread.run(Thread.java:923)

com.google.firebase.crashlytics.startup1:
       at sun.misc.Unsafe.park(Unsafe.java)
       at java.util.concurrent.locks.LockSupport.park(LockSupport.java:190)
       at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2067)
       at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
       at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1092)
       at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1152)
       at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
       at com.google.firebase.crashlytics.internal.common.ExecutorUtils$1$1.onRun(ExecutorUtils.java:2)
       at com.google.firebase.crashlytics.internal.common.BackgroundPriorityRunnable.run(BackgroundPriorityRunnable.java:5)
       at java.lang.Thread.run(Thread.java:923)

Crashlytics Exception Handler1:
       at dalvik.system.VMStack.getThreadStackTrace(VMStack.java)
       at java.lang.Thread.getStackTrace(Thread.java:1736)
       at java.lang.Thread.getAllStackTraces(Thread.java:1812)
       at com.google.firebase.crashlytics.internal.common.CrashlyticsReportDataCapture.populateThreadsList(CrashlyticsReportDataCapture.java:156)
       at com.google.firebase.crashlytics.internal.common.CrashlyticsReportDataCapture.populateExecutionData(CrashlyticsReportDataCapture.java:156)
       at com.google.firebase.crashlytics.internal.common.CrashlyticsReportDataCapture.populateEventApplicationData(CrashlyticsReportDataCapture.java:156)
       at com.google.firebase.crashlytics.internal.common.CrashlyticsReportDataCapture.captureEventData(CrashlyticsReportDataCapture.java:156)
       at com.google.firebase.crashlytics.internal.common.SessionReportingCoordinator.g(SessionReportingCoordinator.java:14)
       at com.google.firebase.crashlytics.internal.common.SessionReportingCoordinator.persistFatalEvent(SessionReportingCoordinator.java:21)
       at com.google.firebase.crashlytics.internal.common.CrashlyticsController$2.call(CrashlyticsController.java:42)
       at com.google.firebase.crashlytics.internal.common.CrashlyticsController$2.call(CrashlyticsController.java:42)
       at com.google.firebase.crashlytics.internal.common.CrashlyticsBackgroundWorker$3.then(CrashlyticsBackgroundWorker.java:2)
       at com.google.android.gms.tasks.zze.run(:8)
       at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
       at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
       at com.google.firebase.crashlytics.internal.common.ExecutorUtils$1$1.onRun(ExecutorUtils.java:2)
       at com.google.firebase.crashlytics.internal.common.BackgroundPriorityRunnable.run(BackgroundPriorityRunnable.java:5)
       at java.lang.Thread.run(Thread.java:923)

AsyncTask #1:
       at java.net.SocketInputStream.socketRead0(SocketInputStream.java)
       at java.net.SocketInputStream.socketRead(SocketInputStream.java:119)
       at java.net.SocketInputStream.read(SocketInputStream.java:176)
       at java.net.SocketInputStream.read(SocketInputStream.java:144)
       at com.android.org.conscrypt.ConscryptEngineSocket$SSLInputStream.readFromSocket(ConscryptEngineSocket.java:945)
       at com.android.org.conscrypt.ConscryptEngineSocket$SSLInputStream.processDataFromSocket(ConscryptEngineSocket.java:909)
       at com.android.org.conscrypt.ConscryptEngineSocket$SSLInputStream.-$$Nest$mprocessDataFromSocket()
       at com.android.org.conscrypt.ConscryptEngineSocket.doHandshake(ConscryptEngineSocket.java:241)
       at com.android.org.conscrypt.ConscryptEngineSocket.startHandshake(ConscryptEngineSocket.java:220)
       at com.android.okhttp.internal.io.RealConnection.connectTls(RealConnection.java:196)
       at com.android.okhttp.internal.io.RealConnection.connectSocket(RealConnection.java:153)
       at com.android.okhttp.internal.io.RealConnection.connect(RealConnection.java:116)
       at com.android.okhttp.internal.http.StreamAllocation.findConnection(StreamAllocation.java:186)
       at com.android.okhttp.internal.http.StreamAllocation.findHealthyConnection(StreamAllocation.java:128)
       at com.android.okhttp.internal.http.StreamAllocation.newStream(StreamAllocation.java:97)
       at com.android.okhttp.internal.http.HttpEngine.connect(HttpEngine.java:302)
       at com.android.okhttp.internal.http.HttpEngine.sendRequest(HttpEngine.java:245)
       at com.android.okhttp.internal.huc.HttpURLConnectionImpl.execute(HttpURLConnectionImpl.java:465)
       at com.android.okhttp.internal.huc.HttpURLConnectionImpl.getResponse(HttpURLConnectionImpl.java:411)
       at com.android.okhttp.internal.huc.HttpURLConnectionImpl.getResponseCode(HttpURLConnectionImpl.java:542)
       at com.android.okhttp.internal.huc.DelegatingHttpsURLConnection.getResponseCode(DelegatingHttpsURLConnection.java:106)
       at com.android.okhttp.internal.huc.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:30)
       at com.facebook.GraphResponse$Companion.fromHttpConnection$facebook_core_release(GraphResponse.java:22)
       at com.facebook.GraphRequest$Companion.executeConnectionAndWait(GraphRequest.java:22)
       at com.facebook.GraphRequest$Companion.executeBatchAndWait(GraphRequest.java:17)
       at com.facebook.GraphRequest$Companion.executeBatchAndWait(GraphRequest.java:23)
       at com.facebook.GraphRequest$Companion.executeBatchAndWait(GraphRequest.java:23)
       at com.facebook.GraphRequest$Companion.executeAndWait(GraphRequest.java:23)
       at com.facebook.GraphRequest.executeAndWait(GraphRequest.java:23)
       at com.facebook.internal.FetchedAppSettingsManager.getAppSettingsQueryResponse(FetchedAppSettingsManager.java:43)
       at com.facebook.internal.FetchedAppSettingsManager.queryAppSettings(FetchedAppSettingsManager.java:27)
       at com.facebook.UserSettingsManager.initializeCodelessSetupEnabledAsync$lambda-0(UserSettingsManager.java:28)
       at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
       at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
       at java.lang.Thread.run(Thread.java:923)

AsyncTask #2:
       at java.net.SocketInputStream.socketRead0(SocketInputStream.java)
       at java.net.SocketInputStream.socketRead(SocketInputStream.java:119)
       at java.net.SocketInputStream.read(SocketInputStream.java:176)
       at java.net.SocketInputStream.read(SocketInputStream.java:144)
       at com.android.org.conscrypt.ConscryptEngineSocket$SSLInputStream.readFromSocket(ConscryptEngineSocket.java:945)
       at com.android.org.conscrypt.ConscryptEngineSocket$SSLInputStream.processDataFromSocket(ConscryptEngineSocket.java:909)
       at com.android.org.conscrypt.ConscryptEngineSocket$SSLInputStream.-$$Nest$mprocessDataFromSocket()
       at com.android.org.conscrypt.ConscryptEngineSocket.doHandshake(ConscryptEngineSocket.java:241)
       at com.android.org.conscrypt.ConscryptEngineSocket.startHandshake(ConscryptEngineSocket.java:220)
       at com.android.okhttp.internal.io.RealConnection.connectTls(RealConnection.java:196)
       at com.android.okhttp.internal.io.RealConnection.connectSocket(RealConnection.java:153)
       at com.android.okhttp.internal.io.RealConnection.connect(RealConnection.java:116)
       at com.android.okhttp.internal.http.StreamAllocation.findConnection(StreamAllocation.java:186)
       at com.android.okhttp.internal.http.StreamAllocation.findHealthyConnection(StreamAllocation.java:128)
       at com.android.okhttp.internal.http.StreamAllocation.newStream(StreamAllocation.java:97)
       at com.android.okhttp.internal.http.HttpEngine.connect(HttpEngine.java:302)
       at com.android.okhttp.internal.http.HttpEngine.sendRequest(HttpEngine.java:245)
       at com.android.okhttp.internal.huc.HttpURLConnectionImpl.execute(HttpURLConnectionImpl.java:465)
       at com.android.okhttp.internal.huc.HttpURLConnectionImpl.getResponse(HttpURLConnectionImpl.java:411)
       at com.android.okhttp.internal.huc.HttpURLConnectionImpl.getResponseCode(HttpURLConnectionImpl.java:542)
       at com.android.okhttp.internal.huc.DelegatingHttpsURLConnection.getResponseCode(DelegatingHttpsURLConnection.java:106)
       at com.android.okhttp.internal.huc.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:30)
       at com.facebook.GraphResponse$Companion.fromHttpConnection$facebook_core_release(GraphResponse.java:22)
       at com.facebook.GraphRequest$Companion.executeConnectionAndWait(GraphRequest.java:22)
       at com.facebook.GraphRequest$Companion.executeBatchAndWait(GraphRequest.java:17)
       at com.facebook.GraphRequest$Companion.executeBatchAndWait(GraphRequest.java:23)
       at com.facebook.GraphRequest$Companion.executeBatchAndWait(GraphRequest.java:23)
       at com.facebook.GraphRequest$Companion.executeAndWait(GraphRequest.java:23)
       at com.facebook.GraphRequest.executeAndWait(GraphRequest.java:23)
       at com.facebook.internal.FetchedAppGateKeepersManager.getAppGateKeepersQueryResponse(FetchedAppGateKeepersManager.java:61)
       at com.facebook.internal.FetchedAppGateKeepersManager.loadAppGateKeepersAsync$lambda-0(FetchedAppGateKeepersManager.java:21)
       at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
       at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
       at java.lang.Thread.run(Thread.java:923)

Firebase-Messaging-Init:
       at sun.misc.Unsafe.park(Unsafe.java)
       at java.util.concurrent.locks.LockSupport.park(LockSupport.java:190)
       at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2067)
       at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1120)
       at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:849)
       at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1092)
       at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1152)
       at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
       at com.google.android.gms.common.util.concurrent.zza.run(zza.java:6)
       at java.lang.Thread.run(Thread.java:923)

Firebase Blocking Thread #0:
       at sun.misc.Unsafe.park(Unsafe.java)
       at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:230)
       at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:461)
       at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:362)
       at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:937)
       at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1091)
       at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1152)
       at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
       at com.google.firebase.concurrent.CustomThreadFactory.lambda$newThread$0(CustomThreadFactory.java:13)
       at com.google.firebase.concurrent.CustomThreadFactory$$ExternalSyntheticLambda0.run(R8$$SyntheticClass:13)
       at java.lang.Thread.run(Thread.java:923)

FinalizerDaemon:
       at java.lang.Object.wait(Object.java)
       at java.lang.Object.wait(Object.java:442)
       at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:190)
       at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:211)
       at java.lang.Daemons$FinalizerDaemon.runInternal(Daemons.java:273)
       at java.lang.Daemons$Daemon.run(Daemons.java:139)
       at java.lang.Thread.run(Thread.java:923)

AsyncTask #3:
       at java.net.SocketInputStream.socketRead0(SocketInputStream.java)
       at java.net.SocketInputStream.socketRead(SocketInputStream.java:119)
       at java.net.SocketInputStream.read(SocketInputStream.java:176)
       at java.net.SocketInputStream.read(SocketInputStream.java:144)
       at com.android.org.conscrypt.ConscryptEngineSocket$SSLInputStream.readFromSocket(ConscryptEngineSocket.java:945)
       at com.android.org.conscrypt.ConscryptEngineSocket$SSLInputStream.processDataFromSocket(ConscryptEngineSocket.java:909)
       at com.android.org.conscrypt.ConscryptEngineSocket$SSLInputStream.-$$Nest$mprocessDataFromSocket()
       at com.android.org.conscrypt.ConscryptEngineSocket.doHandshake(ConscryptEngineSocket.java:241)
       at com.android.org.conscrypt.ConscryptEngineSocket.startHandshake(ConscryptEngineSocket.java:220)
       at com.android.okhttp.internal.io.RealConnection.connectTls(RealConnection.java:196)
       at com.android.okhttp.internal.io.RealConnection.connectSocket(RealConnection.java:153)
       at com.android.okhttp.internal.io.RealConnection.connect(RealConnection.java:116)
       at com.android.okhttp.internal.http.StreamAllocation.findConnection(StreamAllocation.java:186)
       at com.android.okhttp.internal.http.StreamAllocation.findHealthyConnection(StreamAllocation.java:128)
       at com.android.okhttp.internal.http.StreamAllocation.newStream(StreamAllocation.java:97)
       at com.android.okhttp.internal.http.HttpEngine.connect(HttpEngine.java:302)
       at com.android.okhttp.internal.http.HttpEngine.sendRequest(HttpEngine.java:245)
       at com.android.okhttp.internal.huc.HttpURLConnectionImpl.execute(HttpURLConnectionImpl.java:465)
       at com.android.okhttp.internal.huc.HttpURLConnectionImpl.getResponse(HttpURLConnectionImpl.java:411)
       at com.android.okhttp.internal.huc.HttpURLConnectionImpl.getResponseCode(HttpURLConnectionImpl.java:542)
       at com.android.okhttp.internal.huc.DelegatingHttpsURLConnection.getResponseCode(DelegatingHttpsURLConnection.java:106)
       at com.android.okhttp.internal.huc.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:30)
       at com.facebook.GraphResponse$Companion.fromHttpConnection$facebook_core_release(GraphResponse.java:22)
       at com.facebook.GraphRequest$Companion.executeConnectionAndWait(GraphRequest.java:22)
       at com.facebook.GraphRequest$Companion.executeBatchAndWait(GraphRequest.java:17)
       at com.facebook.GraphRequest$Companion.executeBatchAndWait(GraphRequest.java:23)
       at com.facebook.GraphRequest$Companion.executeBatchAndWait(GraphRequest.java:23)
       at com.facebook.GraphRequest$Companion.executeAndWait(GraphRequest.java:23)
       at com.facebook.GraphRequest.executeAndWait(GraphRequest.java:23)
       at com.facebook.internal.FetchedAppSettingsManager.getAppSettingsQueryResponse(FetchedAppSettingsManager.java:43)
       at com.facebook.internal.FetchedAppSettingsManager.loadAppSettingsAsync$lambda-0(FetchedAppSettingsManager.java:74)
       at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
       at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
       at java.lang.Thread.run(Thread.java:923)

AsyncTask #4:
       at sun.misc.Unsafe.park(Unsafe.java)
       at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:230)
       at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:461)
       at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:362)
       at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:937)
       at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1091)
       at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1152)
       at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
       at java.lang.Thread.run(Thread.java:923)

OkHttp ConnectionPool:
       at java.lang.Object.wait(Object.java)
       at com.android.okhttp.ConnectionPool$1.run(ConnectionPool.java:106)
       at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
       at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
       at java.lang.Thread.run(Thread.java:923)

Firebase-Messaging-Topics-Io:
       at sun.misc.Unsafe.park(Unsafe.java)
       at java.util.concurrent.locks.LockSupport.park(LockSupport.java:190)
       at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2067)
       at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1120)
       at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:849)
       at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1092)
       at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1152)
       at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
       at com.google.android.gms.common.util.concurrent.zza.run(zza.java:6)
       at java.lang.Thread.run(Thread.java:923)

FinalizerWatchdogDaemon:
       at java.lang.Object.wait(Object.java)
       at java.lang.Object.wait(Object.java:442)
       at java.lang.Object.wait(Object.java:568)
       at java.lang.Daemons$FinalizerWatchdogDaemon.sleepUntilNeeded(Daemons.java:341)
       at java.lang.Daemons$FinalizerWatchdogDaemon.runInternal(Daemons.java:321)
       at java.lang.Daemons$Daemon.run(Daemons.java:139)
       at java.lang.Thread.run(Thread.java:923)

WM.task-1:
       at sun.misc.Unsafe.park(Unsafe.java)
       at java.util.concurrent.locks.LockSupport.park(LockSupport.java:190)
       at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2067)
       at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
       at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1092)
       at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1152)
       at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
       at java.lang.Thread.run(Thread.java:923)

pool-20-thread-1:
       at sun.misc.Unsafe.park(Unsafe.java)
       at java.util.concurrent.locks.LockSupport.park(LockSupport.java:190)
       at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2067)
       at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1120)
       at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:849)
       at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1092)
       at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1152)
       at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
       at java.lang.Thread.run(Thread.java:923)

Firebase Background Thread #0:
       at sun.misc.Unsafe.park(Unsafe.java)
       at java.util.concurrent.locks.LockSupport.park(LockSupport.java:190)
       at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2067)
       at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
       at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1092)
       at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1152)
       at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
       at com.google.firebase.concurrent.CustomThreadFactory.lambda$newThread$0(CustomThreadFactory.java:13)
       at com.google.firebase.concurrent.CustomThreadFactory$$ExternalSyntheticLambda0.run(R8$$SyntheticClass:13)
       at java.lang.Thread.run(Thread.java:923)

ReferenceQueueDaemon:
       at java.lang.Object.wait(Object.java)
       at java.lang.Object.wait(Object.java:442)
       at java.lang.Object.wait(Object.java:568)
       at java.lang.Daemons$ReferenceQueueDaemon.runInternal(Daemons.java:217)
       at java.lang.Daemons$Daemon.run(Daemons.java:139)
       at java.lang.Thread.run(Thread.java:923)

pool-19-thread-1:
       at sun.misc.Unsafe.park(Unsafe.java)
       at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:230)
       at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2109)
       at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1132)
       at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:849)
       at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1092)
       at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1152)
       at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
       at java.lang.Thread.run(Thread.java:923)

AsyncTask #5:
       at sun.misc.Unsafe.park(Unsafe.java)
       at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:230)
       at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:461)
       at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:362)
       at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:937)
       at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1091)
       at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1152)
       at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
       at java.lang.Thread.run(Thread.java:923)

Code of Conduct

  • I agree to follow this project's Code of Conduct
@emawby
Copy link
Contributor

emawby commented Jul 10, 2023

Thank you for reporting we are investigating!

@emawby
Copy link
Contributor

emawby commented Jul 10, 2023

@SamedHrmn Are you able to reproduce the issue for release builds of your app? If you are able to, then if you could turn on verbose logging and get the logs from the app it would be helpful! I do not know where the K6.a class is coming from, but our logs should print the service being retrieved prior to the crash which could help!

@SamedHrmn
Copy link
Author

Here Verbose logs on profile build mode, I remove my app id from logs and replace our_app_id , dont worry :).

D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.notifications.internal.data.INotificationQueryHelper
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.notifications.internal.data.impl.NotificationQueryHelper@a82de10
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.database.IDatabaseProvider
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.database.impl.DatabaseProvider@12024d1
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.notifications.internal.summary.INotificationSummaryManager
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.notifications.internal.summary.impl.NotificationSummaryManager(com.onesignal.core.internal.application.IApplicationService,com.onesignal.notifications.internal.data.INotificationRepository,com.onesignal.notifications.internal.display.ISummaryNotificationDisplayer,com.onesignal.core.internal.config.ConfigModelStore,com.onesignal.notifications.internal.restoration.INotificationRestoreProcessor,com.onesignal.core.internal.time.ITime)
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.application.IApplicationService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.application.impl.ApplicationService@add2161
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.notifications.internal.data.INotificationRepository
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.notifications.internal.data.impl.NotificationRepository@9c19d09
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.notifications.internal.display.ISummaryNotificationDisplayer
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.notifications.internal.display.impl.SummaryNotificationDisplayer(com.onesignal.core.internal.application.IApplicationService,com.onesignal.notifications.internal.data.INotificationRepository,com.onesignal.notifications.internal.display.INotificationDisplayBuilder)
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.application.IApplicationService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.application.impl.ApplicationService@add2161
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.notifications.internal.data.INotificationRepository
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.notifications.internal.data.impl.NotificationRepository@9c19d09
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.notifications.internal.display.INotificationDisplayBuilder
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.notifications.internal.display.impl.NotificationDisplayBuilder(com.onesignal.core.internal.application.IApplicationService,com.onesignal.notifications.internal.channels.INotificationChannelManager)
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.application.IApplicationService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.application.impl.ApplicationService@add2161
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.notifications.internal.channels.INotificationChannelManager
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.notifications.internal.channels.impl.NotificationChannelManager(com.onesignal.core.internal.application.IApplicationService,com.onesignal.core.internal.language.ILanguageContext)
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.application.IApplicationService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.application.impl.ApplicationService@add2161
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.language.ILanguageContext
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.language.impl.LanguageContext@33ecb0e
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.core.internal.config.ConfigModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.config.ConfigModelStore@ae67ce0
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.notifications.internal.restoration.INotificationRestoreProcessor
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.notifications.internal.restoration.impl.NotificationRestoreProcessor(com.onesignal.core.internal.application.IApplicationService,com.onesignal.notifications.internal.generation.INotificationGenerationWorkManager,com.onesignal.notifications.internal.data.INotificationRepository,com.onesignal.notifications.internal.badges.IBadgeCountUpdater)
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.application.IApplicationService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.application.impl.ApplicationService@add2161
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.notifications.internal.generation.INotificationGenerationWorkManager
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.notifications.internal.generation.impl.NotificationGenerationWorkManager()
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.notifications.internal.data.INotificationRepository
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.notifications.internal.data.impl.NotificationRepository@9c19d09
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.notifications.internal.badges.IBadgeCountUpdater
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.notifications.internal.badges.impl.BadgeCountUpdater@e6ee92f
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.time.ITime
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.time.impl.Time@8e9729d
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.location.ILocationManager
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.location.internal.LocationManager@99fcb3c
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.inAppMessages.internal.backend.IInAppBackendService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.inAppMessages.internal.backend.impl.InAppBackendService@55e00c5
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.session.internal.influence.IInfluenceManager
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.session.internal.influence.impl.InfluenceManager@13eb26a
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.core.internal.config.ConfigModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.config.ConfigModelStore@ae67ce0
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.language.ILanguageContext
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.language.impl.LanguageContext@33ecb0e
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.time.ITime
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.time.impl.Time@8e9729d
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.inAppMessages.internal.lifecycle.IInAppLifecycleService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.inAppMessages.internal.lifecycle.impl.IAMLifecycleService@aa08a1a
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.language.ILanguageContext
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.language.impl.LanguageContext@33ecb0e
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.time.ITime
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.time.impl.Time@8e9729d
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.notifications.INotificationsManager
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.notifications.internal.NotificationsManager@a8ae94b
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.operations.IOperationRepo
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.core.internal.operations.impl.OperationRepo(java.util.List,com.onesignal.core.internal.operations.impl.OperationModelStore,com.onesignal.core.internal.config.ConfigModelStore,com.onesignal.core.internal.time.ITime)
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.user.internal.operations.impl.executors.IdentityOperationExecutor(com.onesignal.user.internal.backend.IIdentityBackendService,com.onesignal.user.internal.identity.IdentityModelStore,com.onesignal.user.internal.builduser.IRebuildUserService)
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.user.internal.backend.IIdentityBackendService
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.user.internal.backend.impl.IdentityBackendService(com.onesignal.core.internal.http.IHttpClient)
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.http.IHttpClient
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.http.impl.HttpClient@e72ea37
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.user.internal.identity.IdentityModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.identity.IdentityModelStore@4e6870c
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.user.internal.builduser.IRebuildUserService
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.user.internal.builduser.impl.RebuildUserService(com.onesignal.user.internal.identity.IdentityModelStore,com.onesignal.user.internal.properties.PropertiesModelStore,com.onesignal.user.internal.subscriptions.SubscriptionModelStore,com.onesignal.core.internal.config.ConfigModelStore)
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.user.internal.identity.IdentityModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.identity.IdentityModelStore@4e6870c
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.user.internal.properties.PropertiesModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.properties.PropertiesModelStore@ebfd312
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.user.internal.subscriptions.SubscriptionModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.subscriptions.SubscriptionModelStore@b3c5f28
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.core.internal.config.ConfigModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.config.ConfigModelStore@ae67ce0
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.user.internal.operations.impl.executors.SubscriptionOperationExecutor(com.onesignal.user.internal.backend.ISubscriptionBackendService,com.onesignal.core.internal.device.IDeviceService,com.onesignal.core.internal.application.IApplicationService,com.onesignal.user.internal.subscriptions.SubscriptionModelStore,com.onesignal.core.internal.config.ConfigModelStore,com.onesignal.user.internal.builduser.IRebuildUserService)
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.user.internal.backend.ISubscriptionBackendService
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.user.internal.backend.impl.SubscriptionBackendService(com.onesignal.core.internal.http.IHttpClient)
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.http.IHttpClient
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.http.impl.HttpClient@e72ea37
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.device.IDeviceService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.device.impl.DeviceService@7d4aba4
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.application.IApplicationService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.application.impl.ApplicationService@add2161
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.user.internal.subscriptions.SubscriptionModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.subscriptions.SubscriptionModelStore@b3c5f28
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.core.internal.config.ConfigModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.config.ConfigModelStore@ae67ce0
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.user.internal.builduser.IRebuildUserService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.builduser.impl.RebuildUserService@ea2e441
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.user.internal.operations.impl.executors.UpdateUserOperationExecutor(com.onesignal.user.internal.backend.IUserBackendService,com.onesignal.user.internal.identity.IdentityModelStore,com.onesignal.user.internal.properties.PropertiesModelStore,com.onesignal.user.internal.builduser.IRebuildUserService)
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.user.internal.backend.IUserBackendService
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.user.internal.backend.impl.UserBackendService(com.onesignal.core.internal.http.IHttpClient)
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.http.IHttpClient
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.http.impl.HttpClient@e72ea37
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.user.internal.identity.IdentityModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.identity.IdentityModelStore@4e6870c
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.user.internal.properties.PropertiesModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.properties.PropertiesModelStore@ebfd312
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.user.internal.builduser.IRebuildUserService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.builduser.impl.RebuildUserService@ea2e441
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.user.internal.operations.impl.executors.LoginUserOperationExecutor(com.onesignal.user.internal.operations.impl.executors.IdentityOperationExecutor,com.onesignal.core.internal.application.IApplicationService,com.onesignal.core.internal.device.IDeviceService,com.onesignal.user.internal.backend.IUserBackendService,com.onesignal.user.internal.identity.IdentityModelStore,com.onesignal.user.internal.properties.PropertiesModelStore,com.onesignal.user.internal.subscriptions.SubscriptionModelStore,com.onesignal.core.internal.config.ConfigModelStore)
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.user.internal.operations.impl.executors.IdentityOperationExecutor
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.operations.impl.executors.IdentityOperationExecutor@82d2de6
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.application.IApplicationService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.application.impl.ApplicationService@add2161
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.device.IDeviceService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.device.impl.DeviceService@7d4aba4
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.user.internal.backend.IUserBackendService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.backend.impl.UserBackendService@51ccf27
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.user.internal.identity.IdentityModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.identity.IdentityModelStore@4e6870c
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.user.internal.properties.PropertiesModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.properties.PropertiesModelStore@ebfd312
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.user.internal.subscriptions.SubscriptionModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.subscriptions.SubscriptionModelStore@b3c5f28
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.core.internal.config.ConfigModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.config.ConfigModelStore@ae67ce0
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.user.internal.operations.impl.executors.LoginUserFromSubscriptionOperationExecutor(com.onesignal.user.internal.backend.ISubscriptionBackendService,com.onesignal.user.internal.identity.IdentityModelStore,com.onesignal.user.internal.properties.PropertiesModelStore)
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.user.internal.backend.ISubscriptionBackendService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.backend.impl.SubscriptionBackendService@38c45d4
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.user.internal.identity.IdentityModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.identity.IdentityModelStore@4e6870c
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.user.internal.properties.PropertiesModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.properties.PropertiesModelStore@ebfd312
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.user.internal.operations.impl.executors.RefreshUserOperationExecutor(com.onesignal.user.internal.backend.IUserBackendService,com.onesignal.user.internal.identity.IdentityModelStore,com.onesignal.user.internal.properties.PropertiesModelStore,com.onesignal.user.internal.subscriptions.SubscriptionModelStore,com.onesignal.core.internal.config.ConfigModelStore,com.onesignal.user.internal.builduser.IRebuildUserService)
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.user.internal.backend.IUserBackendService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.backend.impl.UserBackendService@51ccf27
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.user.internal.identity.IdentityModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.identity.IdentityModelStore@4e6870c
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.user.internal.properties.PropertiesModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.properties.PropertiesModelStore@ebfd312
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.user.internal.subscriptions.SubscriptionModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.subscriptions.SubscriptionModelStore@b3c5f28
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.core.internal.config.ConfigModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.config.ConfigModelStore@ae67ce0
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.user.internal.builduser.IRebuildUserService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.builduser.impl.RebuildUserService@ea2e441
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.core.internal.operations.impl.OperationModelStore
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.core.internal.operations.impl.OperationModelStore(com.onesignal.core.internal.preferences.IPreferencesService)
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.preferences.IPreferencesService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.preferences.impl.PreferencesService@63cfd74
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.core.internal.config.ConfigModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.config.ConfigModelStore@ae67ce0
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.time.ITime
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.time.impl.Time@8e9729d
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.user.internal.properties.PropertiesModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.properties.PropertiesModelStore@ebfd312
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.user.internal.identity.IdentityModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.identity.IdentityModelStore@4e6870c
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.user.internal.subscriptions.SubscriptionModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.subscriptions.SubscriptionModelStore@b3c5f28
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.preferences.IPreferencesService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.preferences.impl.PreferencesService@63cfd74
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.core.internal.startup.StartupService
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.core.internal.startup.StartupService(java.util.List,java.util.List)
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.user.internal.operations.impl.listeners.PropertiesModelStoreListener(com.onesignal.user.internal.properties.PropertiesModelStore,com.onesignal.core.internal.operations.IOperationRepo,com.onesignal.core.internal.config.ConfigModelStore)
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.user.internal.properties.PropertiesModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.properties.PropertiesModelStore@ebfd312
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.operations.IOperationRepo
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.operations.impl.OperationRepo@5f8837d
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.core.internal.config.ConfigModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.config.ConfigModelStore@ae67ce0
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.user.internal.operations.impl.listeners.IdentityModelStoreListener(com.onesignal.user.internal.identity.IdentityModelStore,com.onesignal.core.internal.operations.IOperationRepo,com.onesignal.core.internal.config.ConfigModelStore)
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.user.internal.identity.IdentityModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.identity.IdentityModelStore@4e6870c
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.operations.IOperationRepo
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.operations.impl.OperationRepo@5f8837d
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.core.internal.config.ConfigModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.config.ConfigModelStore@ae67ce0
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.user.internal.operations.impl.listeners.SubscriptionModelStoreListener(com.onesignal.user.internal.subscriptions.SubscriptionModelStore,com.onesignal.core.internal.operations.IOperationRepo,com.onesignal.user.internal.identity.IdentityModelStore,com.onesignal.core.internal.config.ConfigModelStore)
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.user.internal.subscriptions.SubscriptionModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.subscriptions.SubscriptionModelStore@b3c5f28
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.operations.IOperationRepo
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.operations.impl.OperationRepo@5f8837d
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.user.internal.identity.IdentityModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.identity.IdentityModelStore@4e6870c
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.core.internal.config.ConfigModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.config.ConfigModelStore@ae67ce0
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.preferences.impl.PreferencesService@63cfd74
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.core.internal.config.impl.ConfigModelStoreListener(com.onesignal.core.internal.config.ConfigModelStore,com.onesignal.core.internal.backend.IParamsBackendService,com.onesignal.user.internal.subscriptions.ISubscriptionManager)
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.core.internal.config.ConfigModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.config.ConfigModelStore@ae67ce0
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.backend.IParamsBackendService
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.core.internal.backend.impl.ParamsBackendService(com.onesignal.core.internal.http.IHttpClient)
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.http.IHttpClient
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.http.impl.HttpClient@e72ea37
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.user.internal.subscriptions.ISubscriptionManager
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.subscriptions.impl.SubscriptionManager@2955855
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.operations.impl.OperationRepo@5f8837d
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.core.internal.background.impl.BackgroundManager(com.onesignal.core.internal.application.IApplicationService,com.onesignal.core.internal.time.ITime,java.util.List)
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.application.IApplicationService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.application.impl.ApplicationService@add2161
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.time.ITime
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.time.impl.Time@8e9729d
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.session.internal.session.impl.SessionService@9440e5e
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.location.internal.background.LocationBackgroundService(com.onesignal.core.internal.application.IApplicationService,com.onesignal.location.ILocationManager,com.onesignal.location.internal.preferences.ILocationPreferencesService,com.onesignal.location.internal.capture.ILocationCapturer,com.onesignal.core.internal.time.ITime)
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.application.IApplicationService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.application.impl.ApplicationService@add2161
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.location.ILocationManager
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.location.internal.LocationManager@99fcb3c
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.location.internal.preferences.ILocationPreferencesService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.location.internal.preferences.impl.LocationPreferencesService@28e4272
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.location.internal.capture.ILocationCapturer
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.location.internal.capture.impl.LocationCapturer@4fd36c3
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.time.ITime
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.time.impl.Time@8e9729d
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.core.internal.purchases.impl.TrackAmazonPurchase(com.onesignal.core.internal.application.IApplicationService,com.onesignal.core.internal.operations.IOperationRepo,com.onesignal.core.internal.config.ConfigModelStore,com.onesignal.user.internal.identity.IdentityModelStore)
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.application.IApplicationService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.application.impl.ApplicationService@add2161
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.operations.IOperationRepo
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.operations.impl.OperationRepo@5f8837d
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.core.internal.config.ConfigModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.config.ConfigModelStore@ae67ce0
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.user.internal.identity.IdentityModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.identity.IdentityModelStore@4e6870c
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.core.internal.purchases.impl.TrackGooglePurchase(com.onesignal.core.internal.application.IApplicationService,com.onesignal.core.internal.preferences.IPreferencesService,com.onesignal.core.internal.operations.IOperationRepo,com.onesignal.core.internal.config.ConfigModelStore,com.onesignal.user.internal.identity.IdentityModelStore)
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.application.IApplicationService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.application.impl.ApplicationService@add2161
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.preferences.IPreferencesService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.preferences.impl.PreferencesService@63cfd74
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.operations.IOperationRepo
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.operations.impl.OperationRepo@5f8837d
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.core.internal.config.ConfigModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.config.ConfigModelStore@ae67ce0
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.user.internal.identity.IdentityModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.identity.IdentityModelStore@4e6870c
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.session.internal.outcomes.impl.OutcomeEventsController@8fb07f8
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.session.internal.session.impl.SessionService@9440e5e
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.session.internal.session.impl.SessionListener(com.onesignal.core.internal.operations.IOperationRepo,com.onesignal.session.internal.session.ISessionService,com.onesignal.core.internal.config.ConfigModelStore,com.onesignal.user.internal.identity.IdentityModelStore,com.onesignal.session.internal.outcomes.IOutcomeEventsController)
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.operations.IOperationRepo
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.operations.impl.OperationRepo@5f8837d
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.session.internal.session.ISessionService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.session.internal.session.impl.SessionService@9440e5e
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.core.internal.config.ConfigModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.config.ConfigModelStore@ae67ce0
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.user.internal.identity.IdentityModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.identity.IdentityModelStore@4e6870c
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.session.internal.outcomes.IOutcomeEventsController
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.session.internal.outcomes.impl.OutcomeEventsController@8fb07f8
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.notifications.internal.listeners.DeviceRegistrationListener(com.onesignal.core.internal.config.ConfigModelStore,com.onesignal.notifications.internal.channels.INotificationChannelManager,com.onesignal.notifications.internal.pushtoken.IPushTokenManager,com.onesignal.notifications.INotificationsManager,com.onesignal.user.internal.subscriptions.ISubscriptionManager)
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.core.internal.config.ConfigModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.config.ConfigModelStore@ae67ce0
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.notifications.internal.channels.INotificationChannelManager
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.notifications.internal.channels.impl.NotificationChannelManager@451eb40
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.notifications.internal.pushtoken.IPushTokenManager
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.notifications.internal.pushtoken.PushTokenManager(com.onesignal.notifications.internal.registration.IPushRegistrator,com.onesignal.core.internal.device.IDeviceService)
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.notifications.internal.registration.IPushRegistrator
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.device.IDeviceService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.device.impl.DeviceService@7d4aba4
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.core.internal.config.ConfigModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.config.ConfigModelStore@ae67ce0
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.application.IApplicationService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.application.impl.ApplicationService@add2161
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.notifications.internal.registration.impl.GooglePlayServicesUpgradePrompt
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.notifications.internal.registration.impl.GooglePlayServicesUpgradePrompt(com.onesignal.core.internal.application.IApplicationService,com.onesignal.core.internal.device.IDeviceService,com.onesignal.core.internal.config.ConfigModelStore)
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.application.IApplicationService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.application.impl.ApplicationService@add2161
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.device.IDeviceService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.device.impl.DeviceService@7d4aba4
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.core.internal.config.ConfigModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.config.ConfigModelStore@ae67ce0
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.device.IDeviceService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.device.impl.DeviceService@7d4aba4
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.notifications.INotificationsManager
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.notifications.internal.NotificationsManager@a8ae94b
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.user.internal.subscriptions.ISubscriptionManager
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.subscriptions.impl.SubscriptionManager@2955855
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.notifications.internal.listeners.NotificationListener(com.onesignal.core.internal.application.IApplicationService,com.onesignal.notifications.internal.lifecycle.INotificationLifecycleService,com.onesignal.core.internal.config.ConfigModelStore,com.onesignal.session.internal.influence.IInfluenceManager,com.onesignal.user.internal.subscriptions.ISubscriptionManager,com.onesignal.core.internal.device.IDeviceService,com.onesignal.notifications.internal.backend.INotificationBackendService,com.onesignal.notifications.internal.receivereceipt.IReceiveReceiptWorkManager,com.onesignal.notifications.internal.INotificationActivityOpener,com.onesignal.notifications.internal.analytics.IAnalyticsTracker,com.onesignal.core.internal.time.ITime)
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.application.IApplicationService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.application.impl.ApplicationService@add2161
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.notifications.internal.lifecycle.INotificationLifecycleService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.notifications.internal.lifecycle.impl.NotificationLifecycleService@bf27c1f
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.core.internal.config.ConfigModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.config.ConfigModelStore@ae67ce0
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.session.internal.influence.IInfluenceManager
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.session.internal.influence.impl.InfluenceManager@13eb26a
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.user.internal.subscriptions.ISubscriptionManager
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.subscriptions.impl.SubscriptionManager@2955855
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.device.IDeviceService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.device.impl.DeviceService@7d4aba4
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.notifications.internal.backend.INotificationBackendService
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.notifications.internal.backend.impl.NotificationBackendService(com.onesignal.core.internal.http.IHttpClient)
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.http.IHttpClient
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.http.impl.HttpClient@e72ea37
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.notifications.internal.receivereceipt.IReceiveReceiptWorkManager
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.notifications.internal.receivereceipt.impl.ReceiveReceiptWorkManager(com.onesignal.core.internal.application.IApplicationService,com.onesignal.core.internal.config.ConfigModelStore,com.onesignal.user.internal.subscriptions.ISubscriptionManager)
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.application.IApplicationService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.application.impl.ApplicationService@add2161
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.core.internal.config.ConfigModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.config.ConfigModelStore@ae67ce0
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.user.internal.subscriptions.ISubscriptionManager
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.user.internal.subscriptions.impl.SubscriptionManager@2955855
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.notifications.internal.INotificationActivityOpener
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.notifications.internal.NotificationsManager@a8ae94b
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.notifications.internal.analytics.IAnalyticsTracker
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.application.IApplicationService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.application.impl.ApplicationService@add2161
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.core.internal.config.ConfigModelStore
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.config.ConfigModelStore@ae67ce0
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.time.ITime
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.time.impl.Time@8e9729d
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.time.ITime
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.time.impl.Time@8e9729d
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.inAppMessages.internal.preview.InAppMessagePreviewHandler(com.onesignal.inAppMessages.internal.display.IInAppDisplayer,com.onesignal.core.internal.application.IApplicationService,com.onesignal.notifications.internal.display.INotificationDisplayer,com.onesignal.notifications.internal.INotificationActivityOpener,com.onesignal.notifications.internal.lifecycle.INotificationLifecycleService,com.onesignal.inAppMessages.internal.state.InAppStateService,com.onesignal.core.internal.time.ITime)
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.inAppMessages.internal.display.IInAppDisplayer
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.inAppMessages.internal.display.impl.InAppDisplayer@70a7b6c
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.application.IApplicationService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.application.impl.ApplicationService@add2161
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.notifications.internal.display.INotificationDisplayer
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.notifications.internal.display.impl.NotificationDisplayer(com.onesignal.core.internal.application.IApplicationService,com.onesignal.notifications.internal.limiting.INotificationLimitManager,com.onesignal.notifications.internal.display.ISummaryNotificationDisplayer,com.onesignal.notifications.internal.display.INotificationDisplayBuilder)
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.application.IApplicationService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.application.impl.ApplicationService@add2161
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.notifications.internal.limiting.INotificationLimitManager
D/OneSignal( 9838): [main] Found constructor: public com.onesignal.notifications.internal.limiting.impl.NotificationLimitManager(com.onesignal.notifications.internal.data.INotificationRepository,com.onesignal.core.internal.application.IApplicationService,com.onesignal.notifications.internal.summary.INotificationSummaryManager)
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.notifications.internal.data.INotificationRepository
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.notifications.internal.data.impl.NotificationRepository@9c19d09
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.application.IApplicationService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.application.impl.ApplicationService@add2161
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.notifications.internal.summary.INotificationSummaryManager
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.notifications.internal.summary.impl.NotificationSummaryManager@299a535
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.notifications.internal.display.ISummaryNotificationDisplayer
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.notifications.internal.display.impl.SummaryNotificationDisplayer@7bfadca
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.notifications.internal.display.INotificationDisplayBuilder
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.notifications.internal.display.impl.NotificationDisplayBuilder@7ccbb3b
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.notifications.internal.INotificationActivityOpener
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.notifications.internal.NotificationsManager@a8ae94b
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.notifications.internal.lifecycle.INotificationLifecycleService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.notifications.internal.lifecycle.impl.NotificationLifecycleService@bf27c1f
D/OneSignal( 9838): [main] Retrieving service class com.onesignal.inAppMessages.internal.state.InAppStateService
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.inAppMessages.internal.state.InAppStateService@6b13d0d
D/OneSignal( 9838): [main] Retrieving service interface com.onesignal.core.internal.time.ITime
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.core.internal.time.impl.Time@8e9729d
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.inAppMessages.internal.InAppMessagesManager@dd9e258
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.location.internal.permissions.LocationPermissionController@cc5fb1
D/OneSignal( 9838): [main] Already instantiated: com.onesignal.location.internal.LocationManager@99fcb3c
D/OneSignal( 9838): [main] initWithContext: creating new device-scoped user
D/OneSignal( 9838): [main] createAndSwitchToNewUser()
D/OneSignal( 9838): [main] OperationRepo.enqueue(operation: {"name":"create-subscription","appId":"our_app_id","onesignalId":"local-4d3c94d7-43ba-4ba6-9c43-0926b5b7463b","subscriptionId":"local-17a7004b-a17d-4866-963d-5ddc133f6563","type":"PUSH","enabled":false,"address":"","status":"NO_PERMISSION"}, flush: false)
D/OneSignal( 9838): [main] OperationRepo.enqueue(operation: {"name":"login-user","appId":"our_app_id","onesignalId":"local-4d3c94d7-43ba-4ba6-9c43-0926b5b7463b"}, flush: false)
D/OneSignal( 9838): [Thread-10] ConfigModelListener: fetching parameters for appId: our_app_id
D/OneSignal( 9838): [Thread-10] ParamsBackendService.fetchParams(appId: our_app_id, subscriptionId: null)
D/OneSignal( 9838): [main] NotificationsManager.addPermissionObserver(observer: com.onesignal.notifications.internal.listeners.DeviceRegistrationListener@736cc04)
D/OneSignal( 9838): [main] InAppMessagesManager.addLifecycleListener(listener: com.onesignal.flutter.OneSignalInAppMessages@39645ed)
D/OneSignal( 9838): [main] InAppMessagesManager.addClickListener(listener: com.onesignal.flutter.OneSignalInAppMessages@39645ed)
D/OneSignal( 9838): [main] OperationRepo.enqueue(operation: {"name":"update-subscription","appId":"our_app_id","onesignalId":"local-4d3c94d7-43ba-4ba6-9c43-0926b5b7463b","subscriptionId":"local-17a7004b-a17d-4866-963d-5ddc133f6563","type":"PUSH","enabled":false,"address":"","status":"NO_PERMISSION"}, flush: false)
I/FLTFireBGExecutor( 9838): Creating background FlutterEngine instance, with args: [--enable-dart-profiling]
D/OneSignal( 9838): [OpRepo] LoginUserOperationExecutor(operation: [{"name":"login-user","appId":"our_app_id","onesignalId":"local-4d3c94d7-43ba-4ba6-9c43-0926b5b7463b","id":"e79c9ecb-4897-4b71-845c-de13776cf6a0"}, {"name":"create-subscription","appId":"our_app_id","onesignalId":"local-4d3c94d7-43ba-4ba6-9c43-0926b5b7463b","subscriptionId":"local-17a7004b-a17d-4866-963d-5ddc133f6563","type":"PUSH","enabled":false,"address":"","status":"NO_PERMISSION","id":"f2e754dc-a558-40a6-8b12-94cd70ed98e2"}])
D/OneSignal( 9838): [DefaultDispatcher-worker-2] HttpClient: GET apps/our_app_id/android_params.js
D/OneSignal( 9838): [DefaultDispatcher-worker-3] Attempted to clean 6 month old IAM data, but none exists!
D/OneSignal( 9838): [Thread-13] OperationRepo.enqueue(operation: {"name":"update-subscription","appId":"our_app_id","onesignalId":"local-4d3c94d7-43ba-4ba6-9c43-0926b5b7463b","subscriptionId":"local-17a7004b-a17d-4866-963d-5ddc133f6563","type":"PUSH","enabled":false,"address":"","status":"FIREBASE_FCM_INIT_ERROR"}, flush: false)
W/SQLiteLog( 9838): (28) double-quoted string literal: "notification"
D/EGL_emulation( 9838): eglCreateContext: 0x7d04a0e26590: maj 2 min 0 rcv 2
D/EGL_emulation( 9838): eglCreateContext: 0x7d04a0e26b90: maj 2 min 0 rcv 2
D/HostConnection( 9838): createUnique: call
D/HostConnection( 9838): HostConnection::get() New Host Connection established 0x7d04a0e23c50, tid 10019
D/HostConnection( 9838): HostComposition ext ANDROID_EMU_CHECKSUM_HELPER_v1 ANDROID_EMU_native_sync_v2 ANDROID_EMU_dma_v1 ANDROID_EMU_direct_mem ANDROID_EMU_YUV_Cache ANDROID_EMU_has_shared_slots_host_memory_allocator ANDROID_EMU_sync_buffer_data ANDROID_EMU_read_color_buffer_dma GL_OES_vertex_array_object GL_KHR_texture_compression_astc_ldr ANDROID_EMU_host_side_tracing ANDROID_EMU_gles_max_version_2
D/EGL_emulation( 9838): eglMakeCurrent: 0x7d04a0e26b90: ver 2 0 (tinfo 0x7d06bbe52280) (first time)
D/OneSignal( 9838): [DefaultDispatcher-worker-3] HttpClient: POST apps/our_app_id/users - {"subscriptions":[{"type":"AndroidPush","token":"","enabled":false,"notification_types":0,"sdk":"050000","device_model":"sdk_gphone64_x86_64","device_os":"12","rooted":false,"net_type":0,"carrier":"T-Mobile","app_version":"132"}]}
I/TextToSpeech( 9838): Sucessfully bound to com.google.android.tts
I/TextToSpeech( 9838): Connected to TTS engine
I/TextToSpeech( 9838): Setting up the connection to TTS engine...
D/OneSignal( 9838): [main] NotificationsManager.addForegroundLifecycleListener(listener: com.onesignal.flutter.OneSignalNotifications@21a1cc4)
D/OneSignal( 9838): [main] NotificationsManager.addClickListener(handler: com.onesignal.flutter.OneSignalNotifications@21a1cc4)
D/OneSignal( 9838): [main] NotificationsManager.addPermissionObserver(observer: com.onesignal.flutter.OneSignalNotifications@21a1cc4)
D/FlutterGeolocator( 9838): Flutter engine connected. Connected engine count 2
W/t.exercise.dem( 9838): Accessing hidden method Landroid/os/WorkSource;->add(I)Z (unsupported,test-api, reflection, allowed)
W/t.exercise.dem( 9838): Accessing hidden method Landroid/os/WorkSource;->add(ILjava/lang/String;)Z (unsupported,test-api, reflection, allowed)
W/t.exercise.dem( 9838): Accessing hidden method Landroid/os/WorkSource;->get(I)I (unsupported, reflection, allowed)
W/t.exercise.dem( 9838): Accessing hidden method Landroid/os/WorkSource;->getName(I)Ljava/lang/String; (unsupported, reflection, allowed)
I/FLTFireMsgService( 9838): FlutterFirebaseMessagingBackgroundService started!
W/Adjust  ( 9838): PRODUCTION: Adjust is running in Production mode. Use this setting only for the build that you want to publish. Set the environment to `sandbox` if you want to test your app!
W/Adjust  ( 9838): PRODUCTION: Adjust is running in Production mode. Use this setting only for the build that you want to publish. Set the environment to `sandbox` if you want to test your app!
I/flutter ( 9838): [Adjust]: Is enabled: true
D/OneSignal( 9838): [DefaultDispatcher-worker-3] HttpClient: POST apps/our_app_id/users - STATUS: 201 JSON: {"identity":{"onesignal_id":"c0d520a4-e6b0-4617-a047-7cacbedfc712"},"subscriptions":[{"id":"10f47e7b-d72b-4f4f-963f-dc36e6ba9806","app_id":"our_app_id","type":"AndroidPush","token":""}]}
D/OneSignal( 9838): [OpRepo] OperationRepo: execute response = SUCCESS
D/OneSignal( 9838): [DefaultDispatcher-worker-1] HttpClient: GET apps/our_app_id/subscriptions/10f47e7b-d72b-4f4f-963f-dc36e6ba9806/iams
D/OneSignal( 9838): [DefaultDispatcher-worker-2] HttpClient: GET apps/our_app_id/android_params.js - STATUS: 200 JSON: {"awl_list":{},"android_sender_id":"632830867186","chnl_lst":[],"enterp":true,"fba":true,"outcomes":{"direct":{"enabled":true},"indirect":{"notification_attribution":{"minutes_since_displayed":60,"limit":10},"enabled":true},"unattributed":{"enabled":true}},"receive_receipts_enable":true}
D/OneSignal( 9838): [DefaultDispatcher-worker-2] HttpClient: Response has etag of W/"669be827567d0a6dc4bf800ec0f07661" so caching the response.
I/FirebaseApp( 9838): Device unlocked: initializing all Firebase APIs for app ONESIGNAL_SDK_FCM_APP_NAME
D/OneSignal( 9838): [DefaultDispatcher-worker-1] HttpClient: GET apps/our_app_id/subscriptions/10f47e7b-d72b-4f4f-963f-dc36e6ba9806/iams - STATUS: 200 JSON: {}
D/OneSignal( 9838): [OpRepo] SubscriptionOperationExecutor(operations: [{"name":"update-subscription","appId":"our_app_id","onesignalId":"c0d520a4-e6b0-4617-a047-7cacbedfc712","subscriptionId":"10f47e7b-d72b-4f4f-963f-dc36e6ba9806","type":"PUSH","enabled":false,"address":"","status":"NO_PERMISSION","id":"db499115-ae7c-47ac-9e60-69c22ddc3a89"}, {"name":"update-subscription","appId":"our_app_id","onesignalId":"c0d520a4-e6b0-4617-a047-7cacbedfc712","subscriptionId":"10f47e7b-d72b-4f4f-963f-dc36e6ba9806","type":"PUSH","enabled":false,"address":"","status":"FIREBASE_FCM_INIT_ERROR","id":"db80e646-f8ce-456c-a3c1-5e16058eec1d"}])
D/OneSignal( 9838): [DefaultDispatcher-worker-3] HttpClient: PATCH apps/our_app_id/subscriptions/10f47e7b-d72b-4f4f-963f-dc36e6ba9806 - {"subscription":{"type":"AndroidPush","token":"","enabled":false,"notification_types":-8,"sdk":"050000","device_model":"sdk_gphone64_x86_64","device_os":"12","rooted":false,"net_type":0,"carrier":"T-Mobile","app_version":"132"}}
D/OneSignal( 9838): [DefaultDispatcher-worker-3] HttpClient: PATCH apps/our_app_id/subscriptions/10f47e7b-d72b-4f4f-963f-dc36e6ba9806 - STATUS: 200 JSON: {}
D/OneSignal( 9838): [OpRepo] OperationRepo: execute response = SUCCESS
I/OneSignal( 9838): [Thread-22] Device registered, push token = dO1qJdCWSw-7b_prW5esMR:APA91bGXmDZOzqXSgsz3eGTorLf_lKY0sJP0s-Z1yKTtp9Q1a1o82dHQrND_hMoXxtS8jcimfIFnH5FMZGVawVWkiVl2UgVqMNr-sUl674a5Z4afOUravH9yXHfYjd3qGKrmzvg1ukz-
D/OneSignal( 9838): [Thread-22] OperationRepo.enqueue(operation: {"name":"update-subscription","appId":"our_app_id","onesignalId":"c0d520a4-e6b0-4617-a047-7cacbedfc712","subscriptionId":"10f47e7b-d72b-4f4f-963f-dc36e6ba9806","type":"PUSH","enabled":false,"address":"dO1qJdCWSw-7b_prW5esMR:APA91bGXmDZOzqXSgsz3eGTorLf_lKY0sJP0s-Z1yKTtp9Q1a1o82dHQrND_hMoXxtS8jcimfIFnH5FMZGVawVWkiVl2UgVqMNr-sUl674a5Z4afOUravH9yXHfYjd3qGKrmzvg1ukz-","status":"FIREBASE_FCM_INIT_ERROR"}, flush: false)
D/OneSignal( 9838): [Thread-22] OperationRepo.enqueue(operation: {"name":"update-subscription","appId":"our_app_id","onesignalId":"c0d520a4-e6b0-4617-a047-7cacbedfc712","subscriptionId":"10f47e7b-d72b-4f4f-963f-dc36e6ba9806","type":"PUSH","enabled":true,"address":"dO1qJdCWSw-7b_prW5esMR:APA91bGXmDZOzqXSgsz3eGTorLf_lKY0sJP0s-Z1yKTtp9Q1a1o82dHQrND_hMoXxtS8jcimfIFnH5FMZGVawVWkiVl2UgVqMNr-sUl674a5Z4afOUravH9yXHfYjd3qGKrmzvg1ukz-","status":"SUBSCRIBED"}, flush: false)
D/OneSignal( 9838): [OpRepo] SubscriptionOperationExecutor(operations: [{"name":"update-subscription","appId":"our_app_id","onesignalId":"c0d520a4-e6b0-4617-a047-7cacbedfc712","subscriptionId":"10f47e7b-d72b-4f4f-963f-dc36e6ba9806","type":"PUSH","enabled":false,"address":"dO1qJdCWSw-7b_prW5esMR:APA91bGXmDZOzqXSgsz3eGTorLf_lKY0sJP0s-Z1yKTtp9Q1a1o82dHQrND_hMoXxtS8jcimfIFnH5FMZGVawVWkiVl2UgVqMNr-sUl674a5Z4afOUravH9yXHfYjd3qGKrmzvg1ukz-","status":"FIREBASE_FCM_INIT_ERROR","id":"dcb1219f-c683-46e2-aee5-4b279110834d"}, {"name":"update-subscription","appId":"our_app_id","onesignalId":"c0d520a4-e6b0-4617-a047-7cacbedfc712","subscriptionId":"10f47e7b-d72b-4f4f-963f-dc36e6ba9806","type":"PUSH","enabled":true,"address":"dO1qJdCWSw-7b_prW5esMR:APA91bGXmDZOzqXSgsz3eGTorLf_lKY0sJP0s-Z1yKTtp9Q1a1o82dHQrND_hMoXxtS8jcimfIFnH5FMZGVawVWkiVl2UgVqMNr-sUl674a5Z4afOUravH9yXHfYjd3qGKrmzvg1ukz-","status":"SUBSCRIBED","id":"ee623937-a7dd-461b-9829-f025c27c83f4"}])
D/OneSignal( 9838): [DefaultDispatcher-worker-1] HttpClient: PATCH apps/our_app_id/subscriptions/10f47e7b-d72b-4f4f-963f-dc36e6ba9806 - {"subscription":{"type":"AndroidPush","token":"dO1qJdCWSw-7b_prW5esMR:APA91bGXmDZOzqXSgsz3eGTorLf_lKY0sJP0s-Z1yKTtp9Q1a1o82dHQrND_hMoXxtS8jcimfIFnH5FMZGVawVWkiVl2UgVqMNr-sUl674a5Z4afOUravH9yXHfYjd3qGKrmzvg1ukz-","enabled":true,"notification_types":1,"sdk":"050000","device_model":"sdk_gphone64_x86_64","device_os":"12","rooted":false,"net_type":0,"carrier":"T-Mobile","app_version":"132"}}
D/OneSignal( 9838): [DefaultDispatcher-worker-1] HttpClient: PATCH apps/our_app_id/subscriptions/10f47e7b-d72b-4f4f-963f-dc36e6ba9806 - STATUS: 200 JSON: {}
D/OneSignal( 9838): [OpRepo] OperationRepo: execute response = SUCCESS
D/ProfileInstaller( 9838): Installing profile for com.deepsport.exercise.demo
D/EGL_emulation( 9838): app_time_stats: avg=1910.93ms min=26.09ms max=5575.95ms count=3
D/EGL_emulation( 9838): app_time_stats: avg=280.57ms min=7.84ms max=5451.85ms count=21
D/EGL_emulation( 9838): app_time_stats: avg=258.43ms min=8.35ms max=5452.83ms count=23
D/EGL_emulation( 9838): app_time_stats: avg=373.01ms min=7.80ms max=5648.51ms count=16
D/EGL_emulation( 9838): app_time_stats: avg=248.07ms min=7.64ms max=5449.67ms count=24
D/EGL_emulation( 9838): app_time_stats: avg=246.72ms min=7.65ms max=5463.74ms count=24
D/EGL_emulation( 9838): app_time_stats: avg=372.62ms min=9.31ms max=5645.88ms count=16
D/EGL_emulation( 9838): app_time_stats: avg=219.55ms min=7.50ms max=5441.93ms count=27
I/ExoPlayerImpl( 9838): Init f5ce86a [ExoPlayerLib/2.18.7] [emulator64_x86_64_arm64, sdk_gphone64_x86_64, Google, 31]
W/t.exercise.dem( 9838): Accessing hidden method Landroid/media/AudioTrack;->getLatency()I (unsupported, reflection, allowed)
D/EGL_emulation( 9838): app_time_stats: avg=192.35ms min=7.78ms max=4711.61ms count=27
D/OneSignal( 9838): [main] setTags(tags: {screenName=giris_yap_sayfasi})
D/OneSignal( 9838): [main] OperationRepo.enqueue(operation: {"name":"set-tag","appId":"our_app_id","onesignalId":"c0d520a4-e6b0-4617-a047-7cacbedfc712","key":"screenName","value":"giris_yap_sayfasi"}, flush: false)
I/DMCodecAdapterFactory( 9838): Creating an asynchronous MediaCodec adapter for track type video
D/OneSignal( 9838): [OpRepo] UpdateUserOperationExecutor(operation: [{"name":"set-tag","appId":"our_app_id","onesignalId":"c0d520a4-e6b0-4617-a047-7cacbedfc712","key":"screenName","value":"giris_yap_sayfasi","id":"088cb7b3-b531-4db9-8344-46e891e3391a"}])
D/OneSignal( 9838): [DefaultDispatcher-worker-2] HttpClient: PATCH apps/our_app_id/users/by/onesignal_id/c0d520a4-e6b0-4617-a047-7cacbedfc712 - {"refresh_device_metadata":false,"properties":{"tags":{"screenName":"giris_yap_sayfasi"}}}
D/CCodec  ( 9838): allocate(c2.goldfish.h264.decoder)
I/Codec2Client( 9838): Available Codec2 services: "default" "software"
I/CCodec  ( 9838): setting up 'default' as default (vendor) store
I/CCodec  ( 9838): Created component [c2.goldfish.h264.decoder]
D/CCodecConfig( 9838): read media type: video/avc
D/ReflectedParamUpdater( 9838): extent() != 1 for single value type: algo.buffers.max-count.values
D/ReflectedParamUpdater( 9838): extent() != 1 for single value type: output.subscribed-indices.values
D/ReflectedParamUpdater( 9838): extent() != 1 for single value type: input.buffers.allocator-ids.values
D/ReflectedParamUpdater( 9838): extent() != 1 for single value type: output.buffers.allocator-ids.values
D/ReflectedParamUpdater( 9838): extent() != 1 for single value type: algo.buffers.allocator-ids.values
D/ReflectedParamUpdater( 9838): extent() != 1 for single value type: output.buffers.pool-ids.values
D/ReflectedParamUpdater( 9838): extent() != 1 for single value type: algo.buffers.pool-ids.values
D/ReflectedParamUpdater( 9838): ignored struct field coded.color-format.locations
D/CCodecConfig( 9838): ignoring local param raw.size (0xd2001800) as it is already supported
D/CCodecConfig( 9838): ignoring local param default.color (0x5200180b) as it is already supported
D/ReflectedParamUpdater( 9838): ignored struct field raw.hdr-static-info.mastering
I/CCodecConfig( 9838): query failed after returning 12 values (BAD_INDEX)
D/CCodecConfig( 9838): c2 config diff is Dict {
D/CCodecConfig( 9838):   c2::u32 coded.pl.level = 20496
D/CCodecConfig( 9838):   c2::u32 coded.pl.profile = 20481
D/CCodecConfig( 9838):   c2::u32 coded.vui.color.matrix = 0
D/CCodecConfig( 9838):   c2::u32 coded.vui.color.primaries = 0
D/CCodecConfig( 9838):   c2::u32 coded.vui.color.range = 2
D/CCodecConfig( 9838):   c2::u32 coded.vui.color.transfer = 0
D/CCodecConfig( 9838):   c2::u32 default.color.matrix = 0
D/CCodecConfig( 9838):   c2::u32 default.color.primaries = 0
D/CCodecConfig( 9838):   c2::u32 default.color.range = 0
D/CCodecConfig( 9838):   c2::u32 default.color.transfer = 0
D/CCodecConfig( 9838):   c2::u32 input.buffers.max-size.value = 2097152
D/CCodecConfig( 9838):   c2::u32 input.delay.value = 0
D/CCodecConfig( 9838):   string input.media-type.value = "video/avc"
D/CCodecConfig( 9838):   c2::u32 output.delay.value = 8
D/CCodecConfig( 9838):   string output.media-type.value = "video/raw"
D/CCodecConfig( 9838):   c2::u32 raw.color.matrix = 0
D/CCodecConfig( 9838):   c2::u32 raw.color.primaries = 0
D/CCodecConfig( 9838):   c2::u32 raw.color.range = 2
D/CCodecConfig( 9838):   c2::u32 raw.color.transfer = 0
D/CCodecConfig( 9838):   c2::u32 raw.max-size.height = 240
D/CCodecConfig( 9838):   c2::u32 raw.max-size.width = 320
D/CCodecConfig( 9838):   c2::u32 raw.pixel-format.value = 35
D/CCodecConfig( 9838):   c2::i32 raw.rotation.flip = 0
D/CCodecConfig( 9838):   c2::i32 raw.rotation.value = 0
D/CCodecConfig( 9838):   c2::u32 raw.sar.height = 1
D/CCodecConfig( 9838):   c2::u32 raw.sar.width = 1
D/CCodecConfig( 9838):   c2::u32 raw.size.height = 240
D/CCodecConfig( 9838):   c2::u32 raw.size.width = 320
D/CCodecConfig( 9838):   c2:
W/ColorUtils( 9838): expected specified color aspects (2:0:0:0)
I/MediaCodec( 9838): MediaCodec will operate in async mode
D/SurfaceUtils( 9838): connecting to surface 0x7d0590e7acf0, reason connectToSurface
I/MediaCodec( 9838): [c2.goldfish.h264.decoder] setting surface generation to 10074113
D/SurfaceUtils( 9838): disconnecting from surface 0x7d0590e7acf0, reason connectToSurface(reconnect)
D/SurfaceUtils( 9838): connecting to surface 0x7d0590e7acf0, reason connectToSurface(reconnect)
D/OneSignal( 9838): [DefaultDispatcher-worker-2] HttpClient: PATCH apps/our_app_id/users/by/onesignal_id/c0d520a4-e6b0-4617-a047-7cacbedfc712 - STATUS: 202 JSON: {"properties":{"tags":{"screenName":"giris_yap_sayfasi"}}}
D/OneSignal( 9838): [OpRepo] OperationRepo: execute response = SUCCESS
D/CCodec  ( 9838): [c2.goldfish.h264.decoder] buffers are bound to CCodec for this session
D/CCodecConfig( 9838): no c2 equivalents for log-session-id
D/CCodecConfig( 9838): no c2 equivalents for color-standard
D/CCodecConfig( 9838): no c2 equivalents for csd-1
D/CCodecConfig( 9838): no c2 equivalents for native-window
D/CCodecConfig( 9838): no c2 equivalents for flags
D/CCodecConfig( 9838): config failed => CORRUPTED
D/CCodecConfig( 9838): c2 config diff is   c2::u32 default.color.matrix = 1
D/CCodecConfig( 9838):   c2::u32 default.color.primaries = 1
D/CCodecConfig( 9838):   c2::u32 default.color.range = 2
D/CCodecConfig( 9838):   c2::u32 default.color.transfer = 3
D/CCodecConfig( 9838):   c2::u32 raw.max-size.height = 540
D/CCodecConfig( 9838):   c2::u32 raw.max-size.width = 960
D/CCodecConfig( 9838):   c2::u32 raw.size.height = 540
D/CCodecConfig( 9838):   c2::u32 raw.size.width = 960
W/Codec2Client( 9838): query -- param skipped: index = 1107298332.
D/CCodec  ( 9838): client requested max input size 131368, which is smaller than what component recommended (2097152); overriding with component recommendation.
W/CCodec  ( 9838): This behavior is subject to change. It is recommended that app developers double check whether the requested max input size is in reasonable range.
D/CCodec  ( 9838): setup formats input: AMessage(what = 0x00000000) = {
D/CCodec  ( 9838):   int32_t height = 540
D/CCodec  ( 9838):   int32_t level = 65536
D/CCodec  ( 9838):   int32_t max-input-size = 2097152
D/CCodec  ( 9838):   string mime = "video/avc"
D/CCodec  ( 9838):   int32_t profile = 65536
D/CCodec  ( 9838):   int32_t width = 960
D/CCodec  ( 9838):   Rect crop(0, 0, 959, 539)
D/CCodec  ( 9838): }
D/CCodec  ( 9838): setup formats output: AMessage(what = 0x00000000) = {
D/CCodec  ( 9838):   int32_t android._color-format = 2135033992
D/CCodec  ( 9838):   int32_t android._video-scaling = 1
D/CCodec  ( 9838):   int32_t rotation-degrees = 0
D/CCodec  ( 9838):   int32_t color-standard = 1
D/CCodec  ( 9838):   int32_t color-range = 2
D/CCodec  ( 9838):   int32_t color-transfer = 3
D/CCodec  ( 9838):   int32_t sar-height = 1
D/CCodec  ( 9838):   int32_t sar-width = 1
D/CCodec  ( 9838):   Rect crop(0, 0, 959, 539)
D/CCodec  ( 9838):   int32_t width = 960
D/CCodec  ( 9838):   int32_t height = 540
D/CCodec  ( 9838):   int32_t max-height = 540
D/CCodec  ( 9838):   int32_t max-width = 960
D/CCodec  ( 9838):   string mime = "video/raw"
D/CCodec  ( 9838):   int32_t android._dataspace = 260
D/CCodec  ( 9838):   int32_t color-format = 2130708361
D/CCodec  ( 9838): }
I/CCodecConfig( 9838): query failed after returning 12 values (BAD_INDEX)
D/CCodecConfig( 9838): c2 config diff is   c2::u32 raw.color.matrix = 1
D/CCodecConfig( 9838):   c2::u32 raw.color.primaries = 1
D/CCodecConfig( 9838):   c2::u32 raw.color.transfer = 3
D/MediaCodec( 9838): keep callback message for reclaim
W/Codec2Client( 9838): query -- param skipped: index = 1342179345.
W/Codec2Client( 9838): query -- param skipped: index = 2415921170.
W/Codec2Client( 9838): query -- param skipped: index = 1610614798.
W/Codec2Client( 9838): query -- param skipped: index = 2684356609.
D/C2Store ( 9838): Using DMABUF Heaps
D/CCodecBufferChannel( 9838): [c2.goldfish.h264.decoder#769] Created input block pool with allocatorID 16 => poolID 17 - OK (0)
D/CCodecBufferChannel( 9838): [c2.goldfish.h264.decoder#769] Query output surface allocator returned 0 params => BAD_INDEX (6)
I/CCodecBufferChannel( 9838): [c2.goldfish.h264.decoder#769] Created output block pool with allocatorID 18 => poolID 28 - OK
D/CCodecBufferChannel( 9838): [c2.goldfish.h264.decoder#769] Configured output block pool ids 28 => OK
D/Codec2-OutputBufferQueue( 9838): remote graphic buffer migration 0/0
D/Codec2Client( 9838): setOutputSurface -- failed to set consumer usage (6/BAD_INDEX)
D/Codec2Client( 9838): setOutputSurface -- generation=10074113 consumer usage=0x900
D/Codec2Client( 9838): Surface configure completed
I/DMABUFHEAPS( 9838): Using DMA-BUF heap named: system
I/DMCodecAdapterFactory( 9838): Creating an asynchronous MediaCodec adapter for track type audio
D/CCodec  ( 9838): allocate(c2.android.aac.decoder)
I/CCodec  ( 9838): setting up 'default' as default (vendor) store
I/CCodec  ( 9838): Created component [c2.android.aac.decoder]
D/CCodecConfig( 9838): read media type: audio/mp4a-latm
D/ReflectedParamUpdater( 9838): extent() != 1 for single value type: algo.buffers.max-count.values
D/ReflectedParamUpdater( 9838): extent() != 1 for single value type: output.subscribed-indices.values
D/ReflectedParamUpdater( 9838): extent() != 1 for single value type: input.buffers.allocator-ids.values
D/ReflectedParamUpdater( 9838): extent() != 1 for single value type: output.buffers.allocator-ids.values
D/ReflectedParamUpdater( 9838): extent() != 1 for single value type: algo.buffers.allocator-ids.values
D/ReflectedParamUpdater( 9838): extent() != 1 for single value type: output.buffers.pool-ids.values
D/ReflectedParamUpdater( 9838): extent() != 1 for single value type: algo.buffers.pool-ids.values
I/CCodecConfig( 9838): query failed after returning 19 values (BAD_INDEX)
D/CCodecConfig( 9838): c2 config diff is Dict {
D/CCodecConfig( 9838):   c2::u32 coded.aac-packaging.value = 0
D/CCodecConfig( 9838):   c2::u32 coded.bitrate.value = 64000
D/CCodecConfig( 9838):   c2::u32 coded.pl.level = 0
D/CCodecConfig( 9838):   c2::u32 coded.pl.profile = 8192
D/CCodecConfig( 9838):   c2::i32 coding.drc.album-mode.value = 0
D/CCodecConfig( 9838):   c2::float coding.drc.attenuation-factor.value = 1
D/CCodecConfig( 9838):   c2::float coding.drc.boost-factor.value = 1
D/CCodecConfig( 9838):   c2::i32 coding.drc.compression-mode.value = 3
D/CCodecConfig( 9838):   c2::i32 coding.drc.effect-type.value = 3
D/CCodecConfig( 9838):   c2::float coding.drc.encoded-level.value = 0.25
D/CCodecConfig( 9838):   c2::float coding.drc.reference-level.value = -16
D/CCodecConfig( 9838):   c2::u32 input.buffers.max-size.value = 8192
D/CCodecConfig( 9838):   c2::u32 input.delay.value = 0
D/CCodecConfig( 9838):   string input.media-type.value = "audio/mp4a-latm"
D/CCodecConfig( 9838):   c2::u32 output.delay.value = 2
D/CCodecConfig( 9838):   c2::float output.drc.output-loudness.value = 0.25
D/CCodecConfig( 9838):   string output.media-type.value = "audio/raw"
D/CCodecConfig( 9838):   c2::u32 raw.channel-count.value = 1
D/CCodecConfig( 9838):   c2::u32 raw.max-channel-count.value = 8
D/CCodecConfig( 9838):   c2::u32 raw.sample-rate.value = 44100
D/CCodecConfig( 9838): }
I/MediaCodec( 9838): MediaCodec will operate in async mode
D/CCodec  ( 9838): [c2.android.aac.decoder] buffers are bound to CCodec for this session
D/CCodecConfig( 9838): no c2 equivalents for log-session-id
D/CCodecConfig( 9838): no c2 equivalents for flags
D/CCodecConfig( 9838): config failed => CORRUPTED
D/CCodecConfig( 9838): c2 config diff is   c2::u32 raw.channel-count.value = 2
D/CCodecConfig( 9838):   c2::u32 raw.sample-rate.value = 48000
W/Codec2Client( 9838): query -- param skipped: index = 1107298332.
D/CCodec  ( 9838): client requested max input size 36, which is smaller than what component recommended (8192); overriding with component recommendation.
W/CCodec  ( 9838): This behavior is subject to change. It is recommended that app developers double check whether the requested max input size is in reasonable range.
D/CCodec  ( 9838): setup formats input: AMessage(what = 0x00000000) = {
D/CCodec  ( 9838):   int32_t aac-drc-album-mode = 0
D/CCodec  ( 9838):   int32_t aac-drc-boost-level = 127
D/CCodec  ( 9838):   int32_t aac-drc-cut-level = 127
D/CCodec  ( 9838):   int32_t aac-drc-effect-type = 3
D/CCodec  ( 9838):   int32_t aac-encoded-target-level = -1
D/CCodec  ( 9838):   int32_t aac-max-output-channel_count = 8
D/CCodec  ( 9838):   int32_t aac-target-ref-level = 64
D/CCodec  ( 9838):   int32_t bitrate = 64000
D/CCodec  ( 9838):   int32_t channel-count = 2
D/CCodec  ( 9838):   int32_t level = 0
D/CCodec  ( 9838):   int32_t max-input-size = 8192
D/CCodec  ( 9838):   string mime = "audio/mp4a-latm"
D/CCodec  ( 9838):   int32_t profile = 2
D/CCodec  ( 9838):   int32_t sample-rate = 48000
D/CCodec  ( 9838): }
D/CCodec  ( 9838): setup formats output: AMessage(what = 0x00000000) = {
D/CCodec  ( 9838):   int32_t aac-drc-album-mode = 0
D/CCodec  ( 9838):   int32_t aac-drc-boost-level = 127
D/CCodec  ( 9838):   int32_t aac-drc-cut-level = 127
D/CCodec  ( 9838):   int32_t aac-drc-effect-type = 3
D/CCodec  ( 9838):   int32_t aac-drc-output-loudness = -1
D/CCodec  ( 9838):   int32_t aac-encoded-target-level = -1
D/CCodec  ( 9838):   int32_t aac-max-output-channel_count = 8
D/CCodec  ( 9838):   int32_t aac-target-ref-level = 64
D/CCodec  ( 9838):   int32_t channel-count = 2
D/CCodec  ( 9838):   string mime = "audio/raw"
D/CCodec  ( 9838):   int32_t sample-rate = 48000
D/CCodec  ( 9838): }
I/CCodecConfig( 9838): query failed after returning 19 values (BAD_INDEX)
D/MediaCodec( 9838): keep callback message for reclaim
W/Codec2Client( 9838): query -- param skipped: index = 1342179345.
W/Codec2Client( 9838): query -- param skipped: index = 2415921170.
W/Codec2Client( 9838): query -- param skipped: index = 1610614798.
D/CCodecBufferChannel( 9838): [c2.android.aac.decoder#446] Created input block pool with allocatorID 16 => poolID 18 - OK (0)
I/CCodecBufferChannel( 9838): [c2.android.aac.decoder#446] Created output block pool with allocatorID 16 => poolID 39 - OK
D/CCodecBufferChannel( 9838): [c2.android.aac.decoder#446] Configured output block pool ids 39 => OK
D/CCodecConfig( 9838): c2 config diff is   c2::u32 raw.crop.height = 540
D/CCodecConfig( 9838):   c2::u32 raw.crop.left = 0
D/CCodecConfig( 9838):   c2::u32 raw.crop.top = 0
D/CCodecConfig( 9838):   c2::u32 raw.crop.width = 960
W/MediaCodec( 9838): mapFormat: no mediaType information
D/EGL_emulation( 9838): app_time_stats: avg=311.24ms min=9.05ms max=1212.83ms count=5
D/AudioTrack( 9838): getTimestamp_l(30): device stall time corrected using current time 77101271342600
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F....ID 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
I/t.exercise.dem( 9838): Background young concurrent copying GC freed 3710(443KB) AllocSpace objects, 3(124KB) LOS objects, 0% free, 23MB/23MB, paused 9.699ms,77us total 263.094ms
I/t.exercise.dem( 9838): Background concurrent copying GC freed 9984(498KB) AllocSpace objects, 7(1820KB) LOS objects, 49% free, 23MB/47MB, paused 553us,90us total 110.942ms
D/EGL_emulation( 9838): app_time_stats: avg=101.56ms min=18.40ms max=258.09ms count=9
D/EGL_emulation( 9838): app_time_stats: avg=46.02ms min=12.51ms max=115.49ms count=22
D/EGL_emulation( 9838): app_time_stats: avg=60.37ms min=13.22ms max=340.60ms count=17
D/InsetsController( 9838): show(ime(), fromIme=true)
D/EGL_emulation( 9838): app_time_stats: avg=28958.76ms min=3110.35ms max=54807.17ms count=2
D/EGL_emulation( 9838): app_time_stats: avg=53.64ms min=17.13ms max=208.38ms count=19
D/BufferPoolAccessor2.0( 9838): bufferpool2 0x7d04f0e81298 : 5(10485760 size) total buffers - 3(6291456 size) used buffers - 120/125 (recycle/alloc) - 5/125 (fetch/transfer)
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
D/InsetsController( 9838): show(ime(), fromIme=true)
D/BufferPoolAccessor2.0( 9838): bufferpool2 0x7d04f0e3d608 : 5(40960 size) total buffers - 1(8192 size) used buffers - 298/303 (recycle/alloc) - 5/302 (fetch/transfer)
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
W/IInputConnectionWrapper( 9838): beginBatchEdit on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextAfterCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getSelectedText on inactive InputConnection
W/IInputConnectionWrapper( 9838): endBatchEdit on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
D/InsetsController( 9838): show(ime(), fromIme=true)
W/IInputConnectionWrapper( 9838): beginBatchEdit on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextAfterCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getSelectedText on inactive InputConnection
W/IInputConnectionWrapper( 9838): endBatchEdit on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
D/EGL_emulation( 9838): app_time_stats: avg=46.34ms min=8.41ms max=89.35ms count=21
D/InsetsController( 9838): show(ime(), fromIme=true)
D/EGL_emulation( 9838): app_time_stats: avg=44.79ms min=9.06ms max=101.52ms count=22
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
W/ListenableEditingState( 9838): a listener was added to EditingState while a batch edit was in progress
W/IInputConnectionWrapper( 9838): getTextAfterCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getSelectedText on inactive InputConnection
W/IInputConnectionWrapper( 9838): endBatchEdit on inactive InputConnection
D/InsetsController( 9838): show(ime(), fromIme=true)
W/IInputConnectionWrapper( 9838): beginBatchEdit on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextAfterCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getSelectedText on inactive InputConnection
W/IInputConnectionWrapper( 9838): endBatchEdit on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
D/InsetsController( 9838): show(ime(), fromIme=true)
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
W/IInputConnectionWrapper( 9838): beginBatchEdit on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextAfterCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getSelectedText on inactive InputConnection
W/IInputConnectionWrapper( 9838): endBatchEdit on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
D/InsetsController( 9838): show(ime(), fromIme=true)
W/IInputConnectionWrapper( 9838): beginBatchEdit on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextAfterCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getSelectedText on inactive InputConnection
W/IInputConnectionWrapper( 9838): endBatchEdit on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
D/InsetsController( 9838): show(ime(), fromIme=true)
D/EGL_emulation( 9838): app_time_stats: avg=44.89ms min=11.83ms max=81.71ms count=22
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
W/IInputConnectionWrapper( 9838): beginBatchEdit on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
D/InsetsController( 9838): show(ime(), fromIme=true)
W/IInputConnectionWrapper( 9838): getTextAfterCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getSelectedText on inactive InputConnection
W/IInputConnectionWrapper( 9838): endBatchEdit on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): beginBatchEdit on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextAfterCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getSelectedText on inactive InputConnection
W/IInputConnectionWrapper( 9838): endBatchEdit on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
D/InsetsController( 9838): show(ime(), fromIme=true)
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
W/IInputConnectionWrapper( 9838): beginBatchEdit on inactive InputConnection
D/InsetsController( 9838): show(ime(), fromIme=true)
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextAfterCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getSelectedText on inactive InputConnection
W/IInputConnectionWrapper( 9838): endBatchEdit on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
D/InsetsController( 9838): show(ime(), fromIme=true)
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
W/IInputConnectionWrapper( 9838): beginBatchEdit on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
D/InsetsController( 9838): show(ime(), fromIme=true)
W/IInputConnectionWrapper( 9838): getTextAfterCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getSelectedText on inactive InputConnection
W/IInputConnectionWrapper( 9838): endBatchEdit on inactive InputConnection
D/EGL_emulation( 9838): app_time_stats: avg=43.90ms min=12.35ms max=120.28ms count=23
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
D/InsetsController( 9838): show(ime(), fromIme=true)
D/InsetsController( 9838): show(ime(), fromIme=true)
D/EGL_emulation( 9838): app_time_stats: avg=39.77ms min=11.65ms max=78.06ms count=25
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
D/InsetsController( 9838): show(ime(), fromIme=true)
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
W/ListenableEditingState( 9838): a listener was added to EditingState while a batch edit was in progress
W/IInputConnectionWrapper( 9838): getSelectedText on inactive InputConnection
W/IInputConnectionWrapper( 9838): endBatchEdit on inactive InputConnection
W/IInputConnectionWrapper( 9838): beginBatchEdit on inactive InputConnection
D/InsetsController( 9838): show(ime(), fromIme=true)
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextAfterCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getSelectedText on inactive InputConnection
W/IInputConnectionWrapper( 9838): endBatchEdit on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
D/InsetsController( 9838): show(ime(), fromIme=true)
D/BufferPoolAccessor2.0( 9838): bufferpool2 0x7d04f0e81298 : 5(10485760 size) total buffers - 1(2097152 size) used buffers - 248/253 (recycle/alloc) - 5/252 (fetch/transfer)
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
W/IInputConnectionWrapper( 9838): beginBatchEdit on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextAfterCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getSelectedText on inactive InputConnection
W/IInputConnectionWrapper( 9838): endBatchEdit on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
D/InsetsController( 9838): show(ime(), fromIme=true)
D/InsetsController( 9838): show(ime(), fromIme=true)
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
W/ListenableEditingState( 9838): a listener was added to EditingState while a batch edit was in progress
W/IInputConnectionWrapper( 9838): endBatchEdit on inactive InputConnection
W/IInputConnectionWrapper( 9838): beginBatchEdit on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
D/InsetsController( 9838): show(ime(), fromIme=true)
W/IInputConnectionWrapper( 9838): getTextAfterCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getSelectedText on inactive InputConnection
W/IInputConnectionWrapper( 9838): endBatchEdit on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
D/InsetsController( 9838): show(ime(), fromIme=true)
D/EGL_emulation( 9838): app_time_stats: avg=50.15ms min=14.24ms max=101.58ms count=20
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
W/ListenableEditingState( 9838): a listener was added to EditingState while a batch edit was in progress
W/IInputConnectionWrapper( 9838): endBatchEdit on inactive InputConnection
D/InsetsController( 9838): show(ime(), fromIme=true)
W/IInputConnectionWrapper( 9838): beginBatchEdit on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextAfterCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getSelectedText on inactive InputConnection
W/IInputConnectionWrapper( 9838): endBatchEdit on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
W/IInputConnectionWrapper( 9838): getTextBeforeCursor on inactive InputConnection
D/InsetsController( 9838): show(ime(), fromIme=true)
D/MediaCodec( 9838): keep callback message for reclaim
I/CCodecConfig( 9838): query failed after returning 12 values (BAD_INDEX)
D/CCodecConfig( 9838): c2 config diff is   c2::u32 coded.vui.color.matrix = 1
D/CCodecConfig( 9838):   c2::u32 coded.vui.color.primaries = 1
D/CCodecConfig( 9838):   c2::u32 coded.vui.color.transfer = 3
W/Codec2Client( 9838): query -- param skipped: index = 1342179345.
W/Codec2Client( 9838): query -- param skipped: index = 2415921170.
W/Codec2Client( 9838): query -- param skipped: index = 1610614798.
D/MediaCodec( 9838): keep callback message for reclaim
I/CCodecConfig( 9838): query failed after returning 19 values (BAD_INDEX)
W/Codec2Client( 9838): query -- param skipped: index = 1342179345.
W/Codec2Client( 9838): query -- param skipped: index = 2415921170.
W/Codec2Client( 9838): query -- param skipped: index = 1610614798.
D/BufferPoolAccessor2.0( 9838): bufferpool2 0x7d04f0e3d608 : 5(40960 size) total buffers - 1(8192 size) used buffers - 552/557 (recycle/alloc) - 5/552 (fetch/transfer)
W/MediaCodec( 9838): mapFormat: no mediaType information
D/EGL_emulation( 9838): app_time_stats: avg=54.39ms min=13.47ms max=236.61ms count=18
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
D/InsetsController( 9838): show(ime(), fromIme=true)
D/EGL_emulation( 9838): app_time_stats: avg=49.25ms min=12.98ms max=196.55ms count=20
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
D/InsetsController( 9838): show(ime(), fromIme=true)
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
D/InsetsController( 9838): show(ime(), fromIme=true)
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
D/InsetsController( 9838): show(ime(), fromIme=true)
D/EGL_emulation( 9838): app_time_stats: avg=37.05ms min=8.41ms max=82.46ms count=26
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
D/InsetsController( 9838): show(ime(), fromIme=true)
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
D/InsetsController( 9838): show(ime(), fromIme=true)
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
D/InsetsController( 9838): show(ime(), fromIme=true)
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
D/InsetsController( 9838): show(ime(), fromIme=true)
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
D/InsetsController( 9838): show(ime(), fromIme=true)
D/EGL_emulation( 9838): app_time_stats: avg=40.61ms min=8.52ms max=80.57ms count=25
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
D/InsetsController( 9838): show(ime(), fromIme=true)
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
D/InsetsController( 9838): show(ime(), fromIme=true)
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
D/InsetsController( 9838): show(ime(), fromIme=true)
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
D/BufferPoolAccessor2.0( 9838): bufferpool2 0x7d04f0e81298 : 5(10485760 size) total buffers - 1(2097152 size) used buffers - 405/410 (recycle/alloc) - 5/405 (fetch/transfer)
D/InsetsController( 9838): show(ime(), fromIme=true)
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
D/InsetsController( 9838): show(ime(), fromIme=true)
D/EGL_emulation( 9838): app_time_stats: avg=47.93ms min=17.53ms max=189.43ms count=21
D/BufferPoolAccessor2.0( 9838): bufferpool2 0x7d04f0e3d608 : 5(40960 size) total buffers - 1(8192 size) used buffers - 830/835 (recycle/alloc) - 5/829 (fetch/transfer)
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
D/InsetsController( 9838): show(ime(), fromIme=true)
D/InsetsController( 9838): show(ime(), fromIme=true)
D/EGL_emulation( 9838): app_time_stats: avg=38.00ms min=7.99ms max=65.42ms count=27
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
D/InsetsController( 9838): show(ime(), fromIme=true)
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
D/InsetsController( 9838): show(ime(), fromIme=true)
D/EGL_emulation( 9838): app_time_stats: avg=39.82ms min=13.71ms max=87.77ms count=26
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
D/InsetsController( 9838): show(ime(), fromIme=true)
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
D/InsetsController( 9838): show(ime(), fromIme=true)
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
D/InsetsController( 9838): show(ime(), fromIme=true)
D/InputMethodManager( 9838): showSoftInput() view=io.flutter.embedding.android.FlutterView{3fc3e6e VFE...... .F...... 0,0-1080,2028 #1 aid=1073741824} flags=0 reason=SHOW_SOFT_INPUT
D/InsetsController( 9838): show(ime(), fromIme=true)
D/EGL_emulation( 9838): app_time_stats: avg=41.47ms min=13.77ms max=70.61ms count=24
D/OneSignal( 9838): [main] setTags(tags: {login_deepsport=email})
D/OneSignal( 9838): [main] OperationRepo.enqueue(operation: {"name":"set-tag","appId":"our_app_id","onesignalId":"c0d520a4-e6b0-4617-a047-7cacbedfc712","key":"login_deepsport","value":"email"}, flush: false)
I/FirebaseAuth( 9838): Logging in as [email protected] with empty reCAPTCHA token
D/EGL_emulation( 9838): app_time_stats: avg=1916.91ms min=14.57ms max=15138.31ms count=8
W/System  ( 9838): Ignoring header X-Firebase-Locale because its value was null.
D/OneSignal( 9838): [OpRepo] UpdateUserOperationExecutor(operation: [{"name":"set-tag","appId":"our_app_id","onesignalId":"c0d520a4-e6b0-4617-a047-7cacbedfc712","key":"login_deepsport","value":"email","id":"6e89d2cb-4da2-4475-afe3-75afed74e792"}])
D/OneSignal( 9838): [DefaultDispatcher-worker-2] HttpClient: PATCH apps/our_app_id/users/by/onesignal_id/c0d520a4-e6b0-4617-a047-7cacbedfc712 - {"refresh_device_metadata":false,"properties":{"tags":{"login_deepsport":"email"}}}
D/OneSignal( 9838): [DefaultDispatcher-worker-2] HttpClient: PATCH apps/our_app_id/users/by/onesignal_id/c0d520a4-e6b0-4617-a047-7cacbedfc712 - STATUS: 202 JSON: {"properties":{"tags":{"login_deepsport":"email"}}}
D/OneSignal( 9838): [OpRepo] OperationRepo: execute response = SUCCESS
D/EGL_emulation( 9838): app_time_stats: avg=53.47ms min=11.29ms max=376.66ms count=19
W/System  ( 9838): Ignoring header X-Firebase-Locale because its value was null.
D/BufferPoolAccessor2.0( 9838): bufferpool2 0x7d04f0e81298 : 5(10485760 size) total buffers - 1(2097152 size) used buffers - 535/540 (recycle/alloc) - 5/535 (fetch/transfer)
D/FirebaseAuth( 9838): Notifying id token listeners about user ( nS8S7fEDOZUrMzoFOzOJQkjavyx2 ).
D/FirebaseAuth( 9838): Notifying auth state listeners about user ( nS8S7fEDOZUrMzoFOzOJQkjavyx2 ).
W/DynamiteModule( 9838): Local module descriptor class for com.google.android.gms.providerinstaller.dynamite not found.
D/EGL_emulation( 9838): app_time_stats: avg=22.09ms min=5.67ms max=40.94ms count=40
I/DynamiteModule( 9838): Considering local module com.google.android.gms.providerinstaller.dynamite:0 and remote module com.google.android.gms.providerinstaller.dynamite:0
W/ProviderInstaller( 9838): Failed to load providerinstaller module: No acceptable module com.google.android.gms.providerinstaller.dynamite found. Local version is 0 and remote version is 0.
V/NativeCrypto( 9838): Registering com/google/android/gms/org/conscrypt/NativeCrypto's 295 native methods...
W/t.exercise.dem( 9838): Accessing hidden method Ljava/security/spec/ECParameterSpec;->getCurveName()Ljava/lang/String; (unsupported, reflection, allowed)
I/ProviderInstaller( 9838): Installed default security provider GmsCore_OpenSSL
D/BufferPoolAccessor2.0( 9838): bufferpool2 0x7d04f0e3d608 : 5(40960 size) total buffers - 1(8192 size) used buffers - 1081/1086 (recycle/alloc) - 5/1080 (fetch/transfer)
D/EGL_emulation( 9838): app_time_stats: avg=24.32ms min=5.53ms max=61.32ms count=37
W/t.exercise.dem( 9838): Accessing hidden field Ljava/net/Socket;->impl:Ljava/net/SocketImpl; (unsupported, reflection, allowed)
W/t.exercise.dem( 9838): Accessing hidden method Ljava/security/spec/ECParameterSpec;->setCurveName(Ljava/lang/String;)V (unsupported, reflection, allowed)
D/MediaCodec( 9838): keep callback message for reclaim
I/CCodecConfig( 9838): query failed after returning 19 values (BAD_INDEX)
W/Codec2Client( 9838): query -- param skipped: index = 1342179345.
W/Codec2Client( 9838): query -- param skipped: index = 2415921170.
W/Codec2Client( 9838): query -- param skipped: index = 1610614798.
W/MediaCodec( 9838): mapFormat: no mediaType information
D/EGL_emulation( 9838): app_time_stats: avg=286.16ms min=7.57ms max=2867.67ms count=11
D/OneSignal( 9838): [main] setTags(tags: {pro_user_status=null_status})
D/OneSignal( 9838): [main] OperationRepo.enqueue(operation: {"name":"set-tag","appId":"our_app_id","onesignalId":"c0d520a4-e6b0-4617-a047-7cacbedfc712","key":"pro_user_status","value":"null_status"}, flush: false)
D/OneSignal( 9838): [OpRepo] UpdateUserOperationExecutor(operation: [{"name":"set-tag","appId":"our_app_id","onesignalId":"c0d520a4-e6b0-4617-a047-7cacbedfc712","key":"pro_user_status","value":"null_status","id":"ddc7962d-7938-4417-bc98-43db0dda3510"}])
D/OneSignal( 9838): [DefaultDispatcher-worker-1] HttpClient: PATCH apps/our_app_id/users/by/onesignal_id/c0d520a4-e6b0-4617-a047-7cacbedfc712 - {"refresh_device_metadata":false,"properties":{"tags":{"pro_user_status":"null_status"}}}
D/EGL_emulation( 9838): app_time_stats: avg=49.13ms min=6.57ms max=794.26ms count=29
D/OneSignal( 9838): [DefaultDispatcher-worker-1] HttpClient: PATCH apps/our_app_id/users/by/onesignal_id/c0d520a4-e6b0-4617-a047-7cacbedfc712 - STATUS: 202 JSON: {"properties":{"tags":{"pro_user_status":"null_status"}}}
D/OneSignal( 9838): [OpRepo] OperationRepo: execute response = SUCCESS
I/ExoPlayerImpl( 9838): Release f5ce86a [ExoPlayerLib/2.18.7] [emulator64_x86_64_arm64, sdk_gphone64_x86_64, Google, 31] [goog.exo.core, goog.exo.exoplayer, goog.exo.decoder, goog.exo.datasource, goog.exo.extractor]
E/BufferQueueProducer( 9838): [SurfaceTexture-0-9838-0](id:266e00000002,api:3,p:9838,c:9838) cancelBuffer: BufferQueue has been abandoned
E/BufferQueueProducer( 9838): [SurfaceTexture-0-9838-0](id:266e00000002,api:3,p:9838,c:9838) cancelBuffer: BufferQueue has been abandoned
E/BufferQueueProducer( 9838): [SurfaceTexture-0-9838-0](id:266e00000002,api:3,p:9838,c:9838) cancelBuffer: BufferQueue has been abandoned
E/BufferQueueProducer( 9838): [SurfaceTexture-0-9838-0](id:266e00000002,api:3,p:9838,c:9838) cancelBuffer: BufferQueue has been abandoned
E/BufferQueueProducer( 9838): [SurfaceTexture-0-9838-0](id:266e00000002,api:3,p:9838,c:9838) cancelBuffer: BufferQueue has been abandoned
E/BufferQueueProducer( 9838): [SurfaceTexture-0-9838-0](id:266e00000002,api:3,p:9838,c:9838) cancelBuffer: BufferQueue has been abandoned
E/BufferQueueProducer( 9838): [SurfaceTexture-0-9838-0](id:266e00000002,api:3,p:9838,c:9838) cancelBuffer: BufferQueue has been abandoned
E/BufferQueueProducer( 9838): [SurfaceTexture-0-9838-0](id:266e00000002,api:3,p:9838,c:9838) cancelBuffer: BufferQueue has been abandoned
E/BufferQueueProducer( 9838): [SurfaceTexture-0-9838-0](id:266e00000002,api:3,p:9838,c:9838) cancelBuffer: BufferQueue has been abandoned
E/BufferQueueProducer( 9838): [SurfaceTexture-0-9838-0](id:266e00000002,api:3,p:9838,c:9838) cancelBuffer: BufferQueue has been abandoned
E/BufferQueueProducer( 9838): [SurfaceTexture-0-9838-0](id:266e00000002,api:3,p:9838,c:9838) cancelBuffer: BufferQueue has been abandoned
E/BufferQueueProducer( 9838): [SurfaceTexture-0-9838-0](id:266e00000002,api:3,p:9838,c:9838) cancelBuffer: BufferQueue has been abandoned
D/MediaCodec( 9838): keep callback message for reclaim
I/CCodecConfig( 9838): query failed after returning 12 values (BAD_INDEX)
W/Codec2Client( 9838): query -- param skipped: index = 1342179345.
W/Codec2Client( 9838): query -- param skipped: index = 2415921170.
W/Codec2Client( 9838): query -- param skipped: index = 1610614798.
D/CCodecBuffers( 9838): [c2.android.aac.decoder#446:1D-Output.Impl[N]] Client returned a buffer it does not own according to our record: 0
D/MediaCodec( 9838): keep callback message for reclaim
I/CCodecConfig( 9838): query failed after returning 19 values (BAD_INDEX)
W/Codec2Client( 9838): query -- param skipped: index = 1342179345.
W/Codec2Client( 9838): query -- param skipped: index = 2415921170.
W/Codec2Client( 9838): query -- param skipped: index = 1610614798.
D/SurfaceUtils( 9838): connecting to surface 0x7d0590e61430, reason connectToSurface
I/MediaCodec( 9838): [c2.goldfish.h264.decoder] setting surface generation to 10074114
D/SurfaceUtils( 9838): disconnecting from surface 0x7d0590e61430, reason connectToSurface(reconnect)
D/SurfaceUtils( 9838): connecting to surface 0x7d0590e61430, reason connectToSurface(reconnect)
D/Codec2-OutputBufferQueue( 9838): remote graphic buffer migration 0/0
D/Codec2Client( 9838): setOutputSurface -- failed to set consumer usage (6/BAD_INDEX)
D/Codec2Client( 9838): setOutputSurface -- generation=10074114 consumer usage=0x900
E/BufferQueueProducer( 9838): [SurfaceTexture-0-9838-0](id:266e00000002,api:3,p:9838,c:9838) detachBuffer: BufferQueue has been abandoned
D/Codec2Client( 9838): Surface configure completed
D/SurfaceUtils( 9838): disconnecting from surface 0x7d0590e7acf0, reason disconnectFromSurface
D/CCodecBufferChannel( 9838): [c2.goldfish.h264.decoder#769] MediaCodec discarded an unknown buffer
D/CCodecBufferChannel( 9838): [c2.goldfish.h264.decoder#769] MediaCodec discarded an unknown buffer
D/CCodecBufferChannel( 9838): [c2.goldfish.h264.decoder#769] MediaCodec discarded an unknown buffer
I/hw-BpHwBinder( 9838): onLastStrongRef automatically unlinking death recipients
D/CCodecBufferChannel( 9838): [c2.goldfish.h264.decoder#769] MediaCodec discarded an unknown buffer
E/BufferQueueProducer( 9838): [MediaCodec.release](id:266e00000003,api:3,p:9838,c:9838) detachBuffer: slot 0 is not owned by the producer (state = FREE)
D/SurfaceUtils( 9838): disconnecting from surface 0x7d0590e61430, reason disconnectFromSurface
E/BufferQueueProducer( 9838): [MediaCodec.release](id:266e00000003,api:0,p:-1,c:9838) detachBuffer: BufferQueue has no connected producer
D/CCodecBufferChannel( 9838): [c2.android.aac.decoder#446] MediaCodec discarded an unknown buffer
D/CCodecBufferChannel( 9838): [c2.android.aac.decoder#446] MediaCodec discarded an unknown buffer
D/CCodecBufferChannel( 9838): [c2.android.aac.decoder#446] MediaCodec discarded an unknown buffer
D/CCodecBufferChannel( 9838): [c2.android.aac.decoder#446] MediaCodec discarded an unknown buffer
I/hw-BpHwBinder( 9838): onLastStrongRef automatically unlinking death recipients
D/EGL_emulation( 9838): app_time_stats: avg=31.88ms min=13.99ms max=92.27ms count=31
D/EGL_emulation( 9838): app_time_stats: avg=26.38ms min=13.40ms max=39.19ms count=37
D/EGL_emulation( 9838): app_time_stats: avg=26.41ms min=13.70ms max=37.49ms count=37
D/EGL_emulation( 9838): app_time_stats: avg=31.67ms min=14.93ms max=47.02ms count=32
I/t.exercise.dem( 9838): Background concurrent copying GC freed 52291(3442KB) AllocSpace objects, 525(34MB) LOS objects, 49% free, 10MB/21MB, paused 23.187ms,79us total 540.917ms
D/OneSignal( 9838): [main] setTags(tags: {personal_plan=personalPlan})
D/OneSignal( 9838): [main] OperationRepo.enqueue(operation: {"name":"set-tag","appId":"our_app_id","onesignalId":"c0d520a4-e6b0-4617-a047-7cacbedfc712","key":"personal_plan","value":"personalPlan"}, flush: false)
D/OneSignal( 9838): [OpRepo] UpdateUserOperationExecutor(operation: [{"name":"set-tag","appId":"our_app_id","onesignalId":"c0d520a4-e6b0-4617-a047-7cacbedfc712","key":"personal_plan","value":"personalPlan","id":"8421c95c-2a82-456f-9671-7bbf2a18c1aa"}])
D/OneSignal( 9838): [DefaultDispatcher-worker-1] HttpClient: PATCH apps/our_app_id/users/by/onesignal_id/c0d520a4-e6b0-4617-a047-7cacbedfc712 - {"refresh_device_metadata":false,"properties":{"tags":{"personal_plan":"personalPlan"}}}D/EGL_emulation( 9838): app_time_stats: avg=34.14ms min=17.71ms max=74.88ms count=29
D/BufferPoolAccessor2.0( 9838): bufferpool2 0x7d04f0e81298 : 0(0 size) total buffers - 0(0 size) used buffers - 616/621 (recycle/alloc) - 5/613 (fetch/transfer)
D/BufferPoolAccessor2.0( 9838): evictor expired: 1, evicted: 1
D/OneSignal( 9838): [DefaultDispatcher-worker-1] HttpClient: PATCH apps/our_app_id/users/by/onesignal_id/c0d520a4-e6b0-4617-a047-7cacbedfc712 - STATUS: 202 JSON: {"properties":{"tags":{"personal_plan":"personalPlan"}}}
D/OneSignal( 9838): [OpRepo] OperationRepo: execute response = SUCCESS
D/EGL_emulation( 9838): app_time_stats: avg=28.80ms min=13.09ms max=53.21ms count=34
D/BufferPoolAccessor2.0( 9838): bufferpool2 0x7d04f0e3d608 : 0(0 size) total buffers - 0(0 size) used buffers - 1171/1176 (recycle/alloc) - 5/1161 (fetch/transfer)
D/BufferPoolAccessor2.0( 9838): evictor expired: 1, evicted: 1
D/EGL_emulation( 9838): app_time_stats: avg=38.37ms min=18.38ms max=63.88ms count=26
D/EGL_emulation( 9838): app_time_stats: avg=33.37ms min=15.63ms max=61.57ms count=29
D/EGL_emulation( 9838): app_time_stats: avg=76.93ms min=9.78ms max=918.91ms count=18
D/OneSignal( 9838): [main] setTags(tags: {screenName=anasayfa})
D/OneSignal( 9838): [main] OperationRepo.enqueue(operation: {"name":"set-tag","appId":"our_app_id","onesignalId":"c0d520a4-e6b0-4617-a047-7cacbedfc712","key":"screenName","value":"anasayfa"}, flush: false)
D/OneSignal( 9838): [OpRepo] UpdateUserOperationExecutor(operation: [{"name":"set-tag","appId":"our_app_id","onesignalId":"c0d520a4-e6b0-4617-a047-7cacbedfc712","key":"screenName","value":"anasayfa","id":"335c3059-80d7-49b4-95ff-a25e519ac2d3"}])
D/OneSignal( 9838): [DefaultDispatcher-worker-3] HttpClient: PATCH apps/our_app_id/users/by/onesignal_id/c0d520a4-e6b0-4617-a047-7cacbedfc712 - {"refresh_device_metadata":false,"properties":{"tags":{"screenName":"anasayfa"}}}
D/OneSignal( 9838): [DefaultDispatcher-worker-3] HttpClient: PATCH apps/our_app_id/users/by/onesignal_id/c0d520a4-e6b0-4617-a047-7cacbedfc712 - STATUS: 202 JSON: {"properties":{"tags":{"screenName":"anasayfa"}}}
D/OneSignal( 9838): [OpRepo] OperationRepo: execute response = SUCCESS
D/EGL_emulation( 9838): app_time_stats: avg=25.49ms min=8.15ms max=52.24ms count=36
D/EGL_emulation( 9838): app_time_stats: avg=35.37ms min=15.95ms max=63.04ms count=28
D/EGL_emulation( 9838): app_time_stats: avg=110.69ms min=27.12ms max=945.73ms count=12
D/EGL_emulation( 9838): app_time_stats: avg=23.28ms min=7.76ms max=146.88ms count=39
D/EGL_emulation( 9838): app_time_stats: avg=16429.68ms min=6.86ms max=607223.50ms count=37
D/OneSignal( 9838): [main] setTags(tags: {screenName=profil_sayfasi})
D/OneSignal( 9838): [main] OperationRepo.enqueue(operation: {"name":"set-tag","appId":"our_app_id","onesignalId":"c0d520a4-e6b0-4617-a047-7cacbedfc712","key":"screenName","value":"profil_sayfasi"}, flush: false)
D/EGL_emulation( 9838): app_time_stats: avg=622702.25ms min=622702.25ms max=622702.25ms count=1
V/NativeCrypto( 9838): Read error: ssl=0x7d04a0e2e2d8: I/O error during system call, Connection reset by peer
V/NativeCrypto( 9838): Write error: ssl=0x7d04a0e2e2d8: I/O error during system call, Broken pipe
V/NativeCrypto( 9838): SSL shutdown failed: ssl=0x7d04a0e2e2d8: I/O error during system call, Success
D/OneSignal( 9838): [OpRepo] UpdateUserOperationExecutor(operation: [{"name":"set-tag","appId":"our_app_id","onesignalId":"c0d520a4-e6b0-4617-a047-7cacbedfc712","key":"screenName","value":"profil_sayfasi","id":"a85f4edd-e9e0-4d9f-ab56-8856e4c8de4b"}])
D/OneSignal( 9838): [DefaultDispatcher-worker-1] HttpClient: PATCH apps/our_app_id/users/by/onesignal_id/c0d520a4-e6b0-4617-a047-7cacbedfc712 - {"refresh_device_metadata":false,"properties":{"tags":{"screenName":"profil_sayfasi"}}}
D/OneSignal( 9838): [DefaultDispatcher-worker-1] HttpClient: PATCH apps/our_app_id/users/by/onesignal_id/c0d520a4-e6b0-4617-a047-7cacbedfc712 - STATUS: 202 JSON: {"properties":{"tags":{"screenName":"profil_sayfasi"}}}
D/OneSignal( 9838): [OpRepo] OperationRepo: execute response = SUCCESS

@SamedHrmn
Copy link
Author

I also get an error in crashlytics with this error. It's as if the plugin couldn't be installed while in release mode, but I can't find anything like that in the logs. Do you think there is a problem with the pro guard files on the Android side? I couldn't find anything like that in your documents, though.

Fatal Exception: io.flutter.plugins.firebase.crashlytics.FlutterError: MissingPluginException(No implementation found for method OneSignal#initialize on channel OneSignal)
       at MethodChannel._invokeMethod(platform_channel.dart:308)

com.google.firebase.crashlytics.startup1:
       at jdk.internal.misc.Unsafe.park(Unsafe.java)
       at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)
       at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)
       at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:433)
       at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)
       at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)
       at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)
       at com.google.firebase.crashlytics.internal.common.ExecutorUtils$1$1.onRun(ExecutorUtils.java:2)
       at com.google.firebase.crashlytics.internal.common.BackgroundPriorityRunnable.run(BackgroundPriorityRunnable.java:5)
       at java.lang.Thread.run(Thread.java:1012)

WM.task-2:
       at jdk.internal.misc.Unsafe.park(Unsafe.java)
       at java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)
       at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)
       at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:433)
       at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1063)
       at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)
       at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)
       at java.lang.Thread.run(Thread.java:1012)

ReferenceQueueDaemon:
       at java.lang.Object.wait(Object.java)
       at java.lang.Object.wait(Object.java:442)
       at java.lang.Object.wait(Object.java:568)
       at java.lang.Daemons$ReferenceQueueDaemon.runInternal(Daemons.java:232)
       at java.lang.Daemons$Daemon.run(Daemons.java:140)
       at java.lang.Thread.run(Thread.java:1012)

TokenRefresher:
       at android.os.MessageQueue.nativePollOnce(MessageQueue.java)
       at android.os.MessageQueue.next(MessageQueue.java:340)
       at android.os.Looper.loopOnce(Looper.java:168)
       at android.os.Looper.loop(Looper.java:299)
       at android.os.HandlerThread.run(HandlerThread.java:67)

FinalizerDaemon:
       at java.lang.Object.wait(Object.java)
       at java.lang.Object.wait(Object.java:442)
       at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:203)
       at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:224)
       at java.lang.Daemons$FinalizerDaemon.runInternal(Daemons.java:300)
       at java.lang.Daemons$Daemon.run(Daemons.java:140)
       at java.lang.Thread.run(Thread.java:1012)

flutter-worker-2:
       at jdk.internal.misc.Unsafe.park(Unsafe.java)
       at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)
       at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:463)
       at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:361)

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

No branches or pull requests

2 participants