mrousavy / react-native-vision-camera

📸 A powerful, high-performance React Native Camera library.
https://react-native-vision-camera.com
MIT License
7.25k stars 1.06k forks source link

"Image is already closed" error #2658

Closed mks11 closed 5 months ago

mks11 commented 5 months ago

How were you trying to build the app?

Hi, I tried writing a frame processor that wraps a mediapipe's poseLandmarker. The build compiles, but as soon as I open the camera, the camera crashes with the following logs

this is the pose detection plugin ` import { VisionCameraProxy, Frame } from "react-native-vision-camera";

const plugin = VisionCameraProxy.initFrameProcessorPlugin("detectPose");

/**

Calling it like the following ` const frameProcessor = useFrameProcessor((frame) => { "worklet"; // const data = resize(frame, { // scale: { // width: 256, // height: 256, // }, // pixelFormat: "rgb", // dataType: "float32", // });

const detect = detectPose(frame);

console.log("detect");

// if (modal.state === "loaded") {
//   const outputs = modal.model.runSync([data]);
//   console.log(`Received ${outputs} outputs!`);
// }

return;

}, []); `

This is inside the PoseDetectorFrameProcessorPlugin

package com.mks11.testcameravisionlib.posedetectorframeprocessor

import com.google.mediapipe.framework.image.MPImage
import com.google.mediapipe.tasks.vision.core.RunningMode
import com.google.mediapipe.tasks.vision.poselandmarker.PoseLandmarkerResult
import com.mrousavy.camera.frameprocessor.Frame
import com.mrousavy.camera.frameprocessor.FrameProcessorPlugin
import com.mrousavy.camera.frameprocessor.VisionCameraProxy

class PoseDetectorFrameProcessorPlugin(proxy: VisionCameraProxy, options: Map<String, Any>?): FrameProcessorPlugin() {

  val proxy = proxy
  override fun callback(frame: Frame, params: MutableMap<String, Any>?): Any? {
    val poseLandmarkerHelper = PoseLandmarkerHelper(
      minPoseDetectionConfidence = 0.5F,
      minPoseTrackingConfidence = 0.5F,
      minPosePresenceConfidence = 0.5F,
      currentModel = PoseLandmarkerHelper.MODEL_POSE_LANDMARKER_LITE,
      currentDelegate = PoseLandmarkerHelper.DELEGATE_CPU,
      runningMode = RunningMode.LIVE_STREAM,
      context= proxy.context,
      poseLandmarkerHelperListener = object : PoseLandmarkerHelper.LandmarkerListener {
        override fun onError(error: String, errorCode: Int) {
          // Handle errors
          println(error)
        }

        override fun onResults(resultBundle: PoseLandmarkerHelper.ResultBundle): List<PoseLandmarkerResult> {
          // Handle pose detection results
          val poseLandmarkerResults = resultBundle.results
          val inferenceTime = resultBundle.inferenceTime
          val inputImageHeight = resultBundle.inputImageHeight
          val inputImageWidth = resultBundle.inputImageWidth

          // Process the results as needed
          return poseLandmarkerResults
        }
      }
    )
    return poseLandmarkerHelper.detectLiveStream(frame.image, isFrontCamera = true)
  }
}

This is the >>PluginPackage

package com.mks11.testcameravisionlib.posedetectorframeprocessor

import com.facebook.react.ReactPackage
import com.facebook.react.bridge.NativeModule
import com.facebook.react.bridge.ReactApplicationContext
import com.facebook.react.uimanager.ViewManager
import com.mrousavy.camera.frameprocessor.FrameProcessorPluginRegistry

class PoseDetectorFrameProcessorPluginPackage : ReactPackage {
  companion object {
    init {
      FrameProcessorPluginRegistry.addFrameProcessorPlugin("detectPose") { proxy, options ->
        PoseDetectorFrameProcessorPlugin(proxy, options)
      }
    }
  }

  override fun createNativeModules(reactContext: ReactApplicationContext): List<NativeModule> {
    return emptyList()
  }

  override fun createViewManagers(reactContext: ReactApplicationContext): List<ViewManager<*, *>> {
    return emptyList()
  }
}

Full build logs


freported: 135772972; UID 10088; state: DISABLED
2024-03-18 15:41:45.882   503-1633  Compatibil...geReporter system_server                        D  Compat change id reported: 135754954; UID 10088; state: ENABLED
2024-03-18 15:41:45.884   503-533   Compatibil...geReporter system_server                        D  Compat change id reported: 143937733; UID 10088; state: ENABLED
2024-03-18 15:41:45.941   503-1633  ActivityManager         system_server                        W  Slow operation: 70ms so far, now at startProcess: done starting proc!
2024-03-18 15:41:45.968   503-1633  ContentProviderHelper   system_server                        W  Slow operation: 115ms so far, now at getContentProviderImpl: after start process
2024-03-18 15:41:45.968   503-1633  ContentProviderHelper   system_server                        W  Slow operation: 115ms so far, now at getContentProviderImpl: updating data structures
2024-03-18 15:41:45.968   503-1633  ContentProviderHelper   system_server                        W  Slow operation: 115ms so far, now at getContentProviderImpl: done!
2024-03-18 15:41:45.995   316-316   Zygote                  pid-316                              D  Forked child process 27225
2024-03-18 15:41:45.995   503-533   ActivityManager         system_server                        W  Slow operation: 120ms so far, now at startProcess: returned from zygote!
2024-03-18 15:41:45.995   503-533   ActivityManager         system_server                        W  Slow operation: 120ms so far, now at startProcess: done updating battery stats
2024-03-18 15:41:45.995   503-533   ActivityManager         system_server                        W  Slow operation: 120ms so far, now at startProcess: building log message
2024-03-18 15:41:45.995   503-533   ActivityManager         system_server                        I  Start proc 27225:android.process.acore/u0a88 for content provider {com.android.providers.contacts/com.android.providers.contacts.ContactsProvider2}
2024-03-18 15:41:45.995   503-533   ActivityManager         system_server                        W  Slow operation: 120ms so far, now at startProcess: starting to update pids map
2024-03-18 15:41:45.996   503-533   ActivityManager         system_server                        W  Slow operation: 120ms so far, now at startProcess: done updating pids map
2024-03-18 15:41:46.047 27225-27225 d.process.acore         pid-27225                            I  Using CollectorTypeCC GC.
2024-03-18 15:41:46.065 27225-27225 d.process.acore         pid-27225                            E  Not starting debugger since process cannot load the jdwp agent.
2024-03-18 15:41:46.186 27081-27145 AwarenessRouterSyncMgr  com...le.android.apps.youtube.music  E  Exception while syncing fences
                                                                                                    java.util.concurrent.ExecutionException: java.lang.IllegalStateException: Account associated with identity was null
                                                                                                        at apxf.o(PG:6)
                                                                                                        at apxf.get(PG:4)
                                                                                                        at aqbe.a(PG:1)
                                                                                                        at apzq.q(PG:2)
                                                                                                        at mko.run(PG:1)
                                                                                                        at snd.run(PG:1)
                                                                                                        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
                                                                                                        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644)
                                                                                                        at smj.run(PG:2)
                                                                                                        at java.lang.Thread.run(Thread.java:1012)
                                                                                                        at snu.run(PG:5)
                                                                                                    Caused by: java.lang.IllegalStateException: Account associated with identity was null
                                                                                                        at mjv.a(PG:3)
                                                                                                        at aose.a(PG:3)
                                                                                                        at apxh.c(PG:2)
                                                                                                        at apxj.run(PG:9)
                                                                                                        at snd.run(PG:1) 
                                                                                                        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) 
                                                                                                        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644) 
                                                                                                        at smj.run(PG:2) 
                                                                                                        at java.lang.Thread.run(Thread.java:1012) 
                                                                                                        at snu.run(PG:5) 
2024-03-18 15:41:46.197   870-1220  TelephonyPermissions    com.android.phone                    W  reportAccessDeniedToReadIdentifiers:com.google.android.contacts:getAllSubInfoList:1
2024-03-18 15:41:46.331   503-1419  Compatibil...geReporter system_server                        D  Compat change id reported: 168419799; UID 10088; state: DISABLED
2024-03-18 15:41:46.332   503-1419  Compatibil...geReporter system_server                        D  Compat change id reported: 273564678; UID 10088; state: DISABLED
2024-03-18 15:41:46.337   503-577   Compatibil...geReporter system_server                        D  Compat change id reported: 265195908; UID 10088; state: ENABLED
2024-03-18 15:41:46.340 27225-27225 Compatibil...geReporter pid-27225                            D  Compat change id reported: 171979766; UID 10088; state: ENABLED
2024-03-18 15:41:46.342 27225-27225 Compatibil...geReporter pid-27225                            D  Compat change id reported: 242716250; UID 10088; state: ENABLED
2024-03-18 15:41:46.353   503-1419  Compatibil...geReporter system_server                        D  Compat change id reported: 170503758; UID 10088; state: ENABLED
2024-03-18 15:41:46.356 27225-27225 Compatibil...geReporter pid-27225                            D  Compat change id reported: 3400644; UID 10088; state: ENABLED
2024-03-18 15:41:46.371 27225-27225 nativeloader            pid-27225                            D  Configuring clns-shared-6 for other apk /system/priv-app/ContactsProvider/ContactsProvider.apk. target_sdk_version=34, uses_libraries=, library_path=/system/priv-app/ContactsProvider/lib/arm64:/system/lib64:/system_ext/lib64, permitted_path=/data:/mnt/expand:/data/user/0/com.android.providers.contacts:/system/priv-app/ContactsProvider:/system/lib64:/system_ext/lib64
2024-03-18 15:41:46.397 27225-27225 GraphicsEnvironment     pid-27225                            V  Currently set values for:
2024-03-18 15:41:46.397 27225-27225 GraphicsEnvironment     pid-27225                            V    angle_gl_driver_selection_pkgs=[]
2024-03-18 15:41:46.397 27225-27225 GraphicsEnvironment     pid-27225                            V    angle_gl_driver_selection_values=[]
2024-03-18 15:41:46.399 27225-27225 GraphicsEnvironment     pid-27225                            V  ANGLE GameManagerService for com.android.providers.contacts: false
2024-03-18 15:41:46.399 27225-27225 GraphicsEnvironment     pid-27225                            V  com.android.providers.contacts is not listed in per-application setting
2024-03-18 15:41:46.399 27225-27225 GraphicsEnvironment     pid-27225                            V  Neither updatable production driver nor prerelease driver is supported.
2024-03-18 15:41:46.416 27225-27225 nativeloader            android.process.acore                D  Configuring clns-shared-7 for other apk /system/priv-app/UserDictionaryProvider/UserDictionaryProvider.apk. target_sdk_version=34, uses_libraries=, library_path=/system/priv-app/UserDictionaryProvider/lib/arm64:/system/lib64:/system_ext/lib64, permitted_path=/data:/mnt/expand:/data/user/0/com.android.providers.userdictionary:/system/priv-app/UserDictionaryProvider:/system/lib64:/system_ext/lib64
2024-03-18 15:41:46.433 27225-27225 nativeloader            android.process.acore                D  Configuring clns-shared-8 for other apk /system/priv-app/BlockedNumberProvider/BlockedNumberProvider.apk. target_sdk_version=34, uses_libraries=, library_path=/system/priv-app/BlockedNumberProvider/lib/arm64:/system/lib64:/system_ext/lib64, permitted_path=/data:/mnt/expand:/data/user_de/0/com.android.providers.blockednumber:/system/priv-app/BlockedNumberProvider:/system/lib64:/system_ext/lib64
2024-03-18 15:41:46.444 27225-27225 ContactsPerf            android.process.acore                I  VoicemailContentProvider.onCreate start
2024-03-18 15:41:46.457   503-1633  Compatibil...geReporter system_server                        D  Compat change id reported: 161145287; UID 10088; state: ENABLED
2024-03-18 15:41:46.462 27225-27225 ContactsPerf            android.process.acore                I  VoicemailContentProvider.onCreate finish
2024-03-18 15:41:46.533 27225-27242 PhoneAccou...baseHelper android.process.acore                I  updatePhoneAccountHandleMigrationPendingStatus false
2024-03-18 15:41:46.539 27225-27244 PhoneAccou...baseHelper android.process.acore                I  updatePhoneAccountHandleMigrationPendingStatus false
2024-03-18 15:41:46.551 27225-27242 Compatibil...geReporter android.process.acore                D  Compat change id reported: 183155436; UID 10088; state: ENABLED
2024-03-18 15:41:46.563   503-1419  CountryDetector         system_server                        D  The first listener is added
2024-03-18 15:41:46.566 27225-27225 ContactsDatabaseHelper  android.process.acore                I  updateUseStrictPhoneNumberComparison: US
2024-03-18 15:41:46.598   503-2339  ActivityManager         system_server                        I  Flag disabled. Ignoring finishAttachApplication from uid: 10088. pid: 27225
2024-03-18 15:41:46.604 27225-27225 ContactsDatabaseHelper  android.process.acore                I  updateUseStrictPhoneNumberComparison: US
2024-03-18 15:41:46.616 27225-27242 CallLogProvider         android.process.acore                I  Syncing call composer pics -- source user=0, isShadow=true, forAllUser=false
2024-03-18 15:41:46.616 27225-27242 CallLogProvider         android.process.acore                I  Fetching list of Uris to sync
2024-03-18 15:41:46.617 27225-27242 CallLogProvider         android.process.acore                I  Will sync following Uris:[]
2024-03-18 15:41:46.617 27225-27242 CallLogProvider         android.process.acore                I  Syncing call composer pics -- got []
2024-03-18 15:41:46.647 27225-27246 ContactsDatabaseHelper  android.process.acore                D  WAL enabled for contacts2.db: true
2024-03-18 15:41:46.650 27225-27246 PhoneAccou...baseHelper android.process.acore                I  updatePhoneAccountHandleMigrationPendingStatus false
2024-03-18 15:41:46.651 27114-27159 Compatibil...geReporter com.google.android.dialer            D  Compat change id reported: 160794467; UID 10123; state: ENABLED
2024-03-18 15:41:46.696 27081-27142 FA                      com...le.android.apps.youtube.music  I  App measurement initialized, version: 77020
2024-03-18 15:41:46.696 27081-27142 FA                      com...le.android.apps.youtube.music  I  To enable debug logging run: adb shell setprop log.tag.FA VERBOSE
2024-03-18 15:41:46.697 27081-27142 FA                      com...le.android.apps.youtube.music  I  To enable faster debug mode event logging run:
                                                                                                      adb shell setprop debug.firebase.analytics.app com.google.android.apps.youtube.music
2024-03-18 15:41:46.693 27225-27246 ContactLocale           android.process.acore                I  AddressBook Labels [[en_US]]: […, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, Α, Β, Γ, Δ, Ε, Ζ, Η, Θ, Ι, Κ, Λ, Μ, Ν, Ξ, Ο, Π, Ρ, Σ, Τ, Υ, Φ, Χ, Ψ, Ω, …, А, Б, В, Г, Д, Ђ, Е, Є, Ж, З, И, І, Й, Ј, К, Л, Љ, М, Н, Њ, О, П, Р, С, Т, Ћ, У, Ф, Х, Ц, Ч, Џ, Ш, Щ, Ю, Я, …, א, ב, ג, ד, ה, ו, ז, ח, ט, י, כ, ל, מ, נ, ס, ע, פ, צ, ק, ר, ש, ת, …, ا, ب, ت, ث, ج, ح, خ, د, ذ, ر, ز, س, ش, ص, ض, ط, ظ, ع, غ, ف, ق, ك, ل, م, ن, ه, و, ي, …, ก, ข, ฃ, ค, ฅ, ฆ, ง, จ, ฉ, ช, ซ, ฌ, ญ, ฎ, ฏ, ฐ, ฑ, ฒ, ณ, ด, ต, ถ, ท, ธ, น, บ, ป, ผ, ฝ, พ, ฟ, ภ, ม, ย, ร, ฤ, ล, ฦ, ว, ศ, ษ, ส, ห, ฬ, อ, ฮ, …, ㄱ, ㄴ, ㄷ, ㄹ, ㅁ, ㅂ, ㅅ, ㅇ, ㅈ, ㅊ, ㅋ, ㅌ, ㅍ, ㅎ, …, あ, か, さ, た, な, は, ま, や, ら, わ, #, …]
2024-03-18 15:41:46.810 27225-27246 ContactsDatabaseHelper  android.process.acore                D  WAL enabled for profile.db: false
2024-03-18 15:41:46.816   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 15:41:46.854 27114-27177 PhenotypeFlagCommitter  com.google.android.dialer            E  Retrieving snapshot for com.google.android.dialer failed
                                                                                                    java.util.concurrent.TimeoutException: Timed out waiting for Task
                                                                                                        at ofh.O(PG:7)
                                                                                                        at nwm.d(PG:2)
                                                                                                        at nwm.c(PG:2)
                                                                                                        at htv.call(PG:66)
                                                                                                        at svs.call(PG:7)
                                                                                                        at syd.a(Unknown Source:2)
                                                                                                        at sxh.run(PG:3)
                                                                                                        at sye.run(Unknown Source:4)
                                                                                                        at ocg.run(PG:1)
                                                                                                        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
                                                                                                        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644)
                                                                                                        at oca.run(PG:19)
                                                                                                        at nxu.run(PG:53)
                                                                                                        at java.lang.Thread.run(Thread.java:1012)
                                                                                                        at ocj.run(PG:6)
2024-03-18 15:41:46.854 27114-27177 DialerFlags             com.google.android.dialer            I  com.android.dialer.phenotype.Flags$1.onSuccess:111 finished with result: false
2024-03-18 15:41:46.881 27096-27179 Compatibil...geReporter com.google.android.contacts          D  Compat change id reported: 160794467; UID 10138; state: ENABLED
2024-03-18 15:41:46.918 27081-27185 Compatibil...geReporter com...le.android.apps.youtube.music  D  Compat change id reported: 160794467; UID 10143; state: ENABLED
2024-03-18 15:41:46.997 27081-27167 nativeloader            com...le.android.apps.youtube.music  D  Configuring clns-8 for other apk /system/framework/com.android.media.remotedisplay.jar. target_sdk_version=33, uses_libraries=ALL, library_path=/product/priv-app/PrebuiltGmsCore/lib/arm64:/product/priv-app/PrebuiltGmsCore/PrebuiltGmsCore.apk!/lib/arm64-v8a, permitted_path=/data:/mnt/expand:/data/user/0/com.google.android.gms
2024-03-18 15:41:47.079 27225-27246 ContactsProvider        android.process.acore                V  0 Dangling Contacts have been cleaned up.
2024-03-18 15:41:47.231 27081-27167 nativeloader            com...le.android.apps.youtube.music  D  Configuring clns-9 for other apk /system/framework/com.android.location.provider.jar. target_sdk_version=33, uses_libraries=ALL, library_path=/product/priv-app/PrebuiltGmsCore/lib/arm64:/product/priv-app/PrebuiltGmsCore/PrebuiltGmsCore.apk!/lib/arm64-v8a, permitted_path=/data:/mnt/expand:/data/user/0/com.google.android.gms
2024-03-18 15:41:47.308 27081-27167 ApplicationLoaders      com...le.android.apps.youtube.music  D  Returning zygote-cached class loader: /system_ext/framework/androidx.window.extensions.jar
2024-03-18 15:41:47.308 27081-27167 ApplicationLoaders      com...le.android.apps.youtube.music  D  Returning zygote-cached class loader: /system_ext/framework/androidx.window.sidecar.jar
2024-03-18 15:41:47.360   503-1419  Compatibil...geReporter system_server                        D  Compat change id reported: 253665015; UID 10138; state: ENABLED
2024-03-18 15:41:47.360   503-1419  Compatibil...geReporter system_server                        D  Compat change id reported: 194532703; UID 10138; state: ENABLED
2024-03-18 15:41:47.364   503-1419  JobScheduler.JobStatus  system_server                        E  App com.google.android.contacts became active but still in NEVER bucket
2024-03-18 15:41:47.535   503-1419  JobScheduler.JobStatus  system_server                        E  App com.google.android.contacts became active but still in NEVER bucket
2024-03-18 15:41:47.547   503-1419  JobScheduler.JobStatus  system_server                        E  App com.google.android.contacts became active but still in NEVER bucket
2024-03-18 15:41:47.560 27114-27182 DialerCall...nEnabledFn com.google.android.dialer            I  com.android.dialer.callscreen.impl.CallScreenEnabledFn.isEnabled:31 feature disabled by tidepods call screen flag [CONTEXT ratelimit_period="1 MINUTES" ]
2024-03-18 15:41:47.569 27114-27182 DialerTide...oEnabledFn com.google.android.dialer            I  com.android.dialer.revelio.impl.tidepods.impl.TidepodsRevelioEnabledFn.isEnabled:49 tidepods revelio disabled by flag [CONTEXT ratelimit_period="1 MINUTES" ]
2024-03-18 15:41:47.570 27114-27182 DialerTime...rEnabledFn com.google.android.dialer            I  com.android.dialer.timekeeper.impl.TimeKeeperEnabledFn.isEnabled:29 disabled by flag [CONTEXT ratelimit_period="1 MINUTES" ]
2024-03-18 15:41:47.571 27114-27182 DialerXatuEnabledFn     com.google.android.dialer            I  com.android.dialer.xatu.impl.XatuEnabledFn.isEnabled:33 disabled by flag [CONTEXT ratelimit_period="1 MINUTES" ]
2024-03-18 15:41:47.641 26363-27071 BugleDataModel          com.google.android.apps.messaging    I  ParticipantFullRefresh: Number of participants refreshed: 0
2024-03-18 15:41:47.648 26363-27071 BugleDataModel          com.google.android.apps.messaging    I  ActionExecutorImpl: Timestamp for ACTION_RESPONSE_QUEUED_SelfParticipantsRefreshAction elapsedRealTime: 16860249 currentTimeMillis: 1710756707648
2024-03-18 15:41:47.649   503-1419  JobScheduler.JobStatus  system_server                        E  App com.google.android.contacts became active but still in NEVER bucket
2024-03-18 15:41:47.703   503-1419  ActivityManager         system_server                        I  Killing 26987:com.android.chrome/u0a135 (adj 955): empty #17
2024-03-18 15:41:47.705 27081-27167 nativeloader            com...le.android.apps.youtube.music  D  Configuring product-clns-10 for unbundled product apk /product/priv-app/PrebuiltGmsCore/PrebuiltGmsCore.apk. target_sdk_version=33, uses_libraries=, library_path=/product/priv-app/PrebuiltGmsCore/lib/arm64:/product/priv-app/PrebuiltGmsCore/PrebuiltGmsCore.apk!/lib/arm64-v8a:/product/lib64:/system/product/lib64, permitted_path=/data:/mnt/expand:/data/user/0/com.google.android.gms:/product/lib64:/system/product/lib64
2024-03-18 15:41:47.712 27081-27185 Compatibil...geReporter com...le.android.apps.youtube.music  D  Compat change id reported: 194532703; UID 10143; state: ENABLED
2024-03-18 15:41:47.712 27081-27185 Compatibil...geReporter com...le.android.apps.youtube.music  D  Compat change id reported: 253665015; UID 10143; state: DISABLED
2024-03-18 15:41:47.712   503-1419  Compatibil...geReporter system_server                        D  Compat change id reported: 253665015; UID 10143; state: DISABLED
2024-03-18 15:41:47.712   503-1419  Compatibil...geReporter system_server                        D  Compat change id reported: 194532703; UID 10143; state: ENABLED
2024-03-18 15:41:47.713   503-1419  JobScheduler.JobStatus  system_server                        E  App com.google.android.apps.youtube.music became active but still in NEVER bucket
2024-03-18 15:41:47.716   503-1419  JobScheduler.JobStatus  system_server                        E  App com.google.android.apps.youtube.music became active but still in NEVER bucket
2024-03-18 15:41:47.717   503-1419  Compatibil...geReporter system_server                        D  Compat change id reported: 271850009; UID 10143; state: DISABLED
2024-03-18 15:41:47.718   503-1419  JobScheduler.JobStatus  system_server                        E  App com.google.android.apps.youtube.music became active but still in NEVER bucket
2024-03-18 15:41:47.745 27114-27114 DialerFlags             com.google.android.dialer            I  com.android.dialer.phenotype.Flags.lambda$registerDialerMendelConfigPackage$0:130 phenotype register status: true
2024-03-18 15:41:47.746 27114-27114 DialerFlags             com.google.android.dialer            I  com.android.dialer.phenotype.Flags.lambda$registerDialerDirectbootMendelConfigPackage$1:142 directboot-aware phenotype register status: true
2024-03-18 15:41:47.746   503-534   libprocessgroup         system_server                        I  Successfully killed process cgroup uid 10135 pid 26987 in 42ms
2024-03-18 15:41:47.829   503-1419  JobScheduler.JobStatus  system_server                        E  App com.google.android.apps.youtube.music became active but still in NEVER bucket
2024-03-18 15:41:47.941   503-1419  JobScheduler.JobStatus  system_server                        E  App com.google.android.apps.youtube.music became active but still in NEVER bucket
2024-03-18 15:41:47.952 27096-27190 Compatibil...geReporter com.google.android.contacts          D  Compat change id reported: 210923482; UID 10138; state: ENABLED
2024-03-18 15:41:47.970   503-577   ProcessStats            system_server                        W  Tracking association SourceState{f4c1d6c com.google.android.contacts/10138 ImpBg #23188} whose proc state 6 is better than process ProcessState{e88c978 android.process.acore/10088 pkg=com.android.providers.contacts (sub)} proc state 8 (12 skipped)
2024-03-18 15:41:48.077 15998-15998 BoundBrokerSvc          com.google.android.gms               D  onBind: Intent { act=com.google.android.gms.measurement.START pkg=com.google.android.gms }
2024-03-18 15:41:48.077 15998-15998 BoundBrokerSvc          com.google.android.gms               D  Loading bound service for intent: Intent { act=com.google.android.gms.measurement.START pkg=com.google.android.gms }
2024-03-18 15:41:48.107   503-2340  JobScheduler.JobStatus  system_server                        E  App com.google.android.apps.youtube.music became active but still in NEVER bucket
2024-03-18 15:41:48.128   503-2340  JobScheduler.JobStatus  system_server                        E  App com.google.android.contacts became active but still in NEVER bucket
2024-03-18 15:41:48.172   503-2340  JobScheduler.JobStatus  system_server                        E  App com.google.android.apps.youtube.music became active but still in NEVER bucket
2024-03-18 15:41:48.194   503-1419  JobScheduler.JobStatus  system_server                        E  App com.google.android.contacts became active but still in NEVER bucket
2024-03-18 15:41:48.206 26363-27070 BugleSelfIdentity       com.google.android.apps.messaging    I  Nothing changed in MyIdentity as phone number does not change [CONTEXT sub_id=1 ]
2024-03-18 15:41:48.243   503-1419  JobScheduler.JobStatus  system_server                        E  App com.google.android.apps.youtube.music became active but still in NEVER bucket
2024-03-18 15:41:48.296   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:41:48.320   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 15:41:48.372   503-2340  JobScheduler.JobStatus  system_server                        E  App com.google.android.contacts became active but still in NEVER bucket
2024-03-18 15:41:48.395   503-2340  JobScheduler            system_server                        W  Job didn't exist in JobStore: deaebed #u0a138/7 com.google.android.contacts/com.google.android.apps.contacts.shortcut.ShortcutJobService
2024-03-18 15:41:48.456   503-2340  JobScheduler.JobStatus  system_server                        E  App com.google.android.contacts became active but still in NEVER bucket
2024-03-18 15:41:48.534   503-2102  ConnectivityService     system_server                        D  requestNetwork for uid/pid:10143/27081 activeRequest: null callbackRequest: 918 [NetworkRequest [ REQUEST id=919, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10143 RequestorUid: 10143 RequestorPkg: com.google.android.apps.youtube.music UnderlyingNetworks: Null] ]] callback flags: 0 order: 2147483647
2024-03-18 15:41:48.570   503-632   WifiNetworkFactory      system_server                        D  got request NetworkRequest [ REQUEST id=919, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10143 RequestorUid: 10143 RequestorPkg: com.google.android.apps.youtube.music UnderlyingNetworks: Null] ]
2024-03-18 15:41:48.570   503-632   UntrustedW...orkFactory system_server                        D  got request NetworkRequest [ REQUEST id=919, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10143 RequestorUid: 10143 RequestorPkg: com.google.android.apps.youtube.music UnderlyingNetworks: Null] ]
2024-03-18 15:41:48.571   503-632   OemPaidWif...orkFactory system_server                        D  got request NetworkRequest [ REQUEST id=919, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10143 RequestorUid: 10143 RequestorPkg: com.google.android.apps.youtube.music UnderlyingNetworks: Null] ]
2024-03-18 15:41:48.571   503-632   MultiInter...orkFactory system_server                        D  got request NetworkRequest [ REQUEST id=919, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10143 RequestorUid: 10143 RequestorPkg: com.google.android.apps.youtube.music UnderlyingNetworks: Null] ]
2024-03-18 15:41:48.571   503-639   ConnectivityService     system_server                        D  NetReassign [919 : null → 101] [c 12] [a 20] [i 3]
2024-03-18 15:41:48.639 15998-16003 gle.android.gms         com.google.android.gms               I  CollectorTransition concurrent copying GC freed 30102(1414KB) AllocSpace objects, 26(1352KB) LOS objects, 49% free, 8082KB/15MB, paused 83us,172us total 908.301ms
2024-03-18 15:41:48.639 15998-16003 gle.android.gms         com.google.android.gms               W  Reducing the number of considered missed Gc histogram windows from 119 to 100
2024-03-18 15:41:48.717   503-577   Compatibil...geReporter system_server                        D  Compat change id reported: 265195908; UID 10143; state: ENABLED
2024-03-18 15:41:48.750   316-316   Zygote                  pid-316                              I  Process 26987 exited due to signal 9 (Killed)
2024-03-18 15:41:48.764   503-760   ActivityManager         system_server                        W  Scheduling restart of crashed service com.android.chrome/org.chromium.chrome.browser.customtabs.CustomTabsConnectionService in 1000ms for connection
2024-03-18 15:41:48.766   503-523   DisplayManagerService   system_server                        D  Drop pending events for gone uid 10135
2024-03-18 15:41:48.782 27081-27167 DynamiteModule          com...le.android.apps.youtube.music  I  Considering local module com.google.android.gms.ads.dynamite:0 and remote module com.google.android.gms.ads.dynamite:231004600
2024-03-18 15:41:48.782 27081-27167 DynamiteModule          com...le.android.apps.youtube.music  I  Selected remote version of com.google.android.gms.ads.dynamite, version >= 231004600
2024-03-18 15:41:48.791   503-760   JobScheduler.JobStatus  system_server                        E  App com.google.android.contacts became active but still in NEVER bucket
2024-03-18 15:41:48.831   503-925   JobScheduler.JobStatus  system_server                        E  App com.google.android.contacts became active but still in NEVER bucket
2024-03-18 15:41:48.904 27096-27179 Compatibil...geReporter com.google.android.contacts          D  Compat change id reported: 263076149; UID 10138; state: ENABLED
2024-03-18 15:41:48.955 27081-27167 ziparchive              com...le.android.apps.youtube.music  W  Unable to open '/data/user_de/0/com.google.android.gms/app_chimera/m/00000000/AdsDynamite.dm': No such file or directory
2024-03-18 15:41:48.955 27081-27167 ziparchive              com...le.android.apps.youtube.music  W  Unable to open '/data/user_de/0/com.google.android.gms/app_chimera/m/00000000/AdsDynamite.dm': No such file or directory
2024-03-18 15:41:48.990 27081-27167 DynamitePackage         com...le.android.apps.youtube.music  D  Instantiated singleton DynamitePackage.
2024-03-18 15:41:48.990 27081-27167 DynamitePackage         com...le.android.apps.youtube.music  D  Instantiating com.google.android.gms.ads.adshield.ChimeraAdShieldCreatorImpl
2024-03-18 15:41:49.059  3897-3897  Wear_Controller         com.google.android.gms.persistent    I  Wearable module requires a companion app to be installed.
2024-03-18 15:41:49.059  3897-3897  WearableService         com.google.android.gms.persistent    I  onCreate: Wearable Services not starting. Wear is not available on this device.
2024-03-18 15:41:49.092 15998-20472 SQLiteLog               com.google.android.gms               W  (28) double-quoted string literal: "1710583909092"
2024-03-18 15:41:49.092 15998-20472 SQLiteLog               com.google.android.gms               W  (28) double-quoted string literal: "1"
2024-03-18 15:41:49.101  3897-3911  WearableService         com.google.android.gms.persistent    W  onGetService: Wear is not available on this device.
2024-03-18 15:41:49.128 27096-27259 isg                     com.google.android.contacts          W  Not syncing settings to wear.
                                                                                                    jcf: None of the queried APIs are available. Wearable.API: ConnectionResult{statusCode=API_UNAVAILABLE, resolution=null, message=null}
                                                                                                        at jde.a(PG:4)
                                                                                                        at jdw.r(PG:4)
                                                                                                        at jdw.j(PG:5)
                                                                                                        at jdw.i(PG:1)
                                                                                                        at sab.s(PG:1)
                                                                                                        at jfh.a(PG:1)
                                                                                                        at jfb.d(PG:6)
                                                                                                        at jfc.handleMessage(PG:38)
                                                                                                        at android.os.Handler.dispatchMessage(Handler.java:106)
                                                                                                        at android.os.Looper.loopOnce(Looper.java:205)
                                                                                                        at android.os.Looper.loop(Looper.java:294)
                                                                                                        at android.os.HandlerThread.run(HandlerThread.java:67)
2024-03-18 15:41:49.136 27114-27114 DialerFlags             com.google.android.dialer            I  com.android.dialer.phenotype.Flags.lambda$registerDialerSharedDirectbootMendelConfigPackage$2:156 dialer-shared-directboot-aware phenotype register status: true
2024-03-18 15:41:49.199   503-925   ActivityManager         system_server                        I  Killing 17360:com.google.android.devicelockcontroller/u0a172 (adj 965): empty #17
2024-03-18 15:41:49.200   503-925   ActivityManager         system_server                        I  Killing 19081:com.google.android.deskclock/u0a152 (adj 945): empty #18
2024-03-18 15:41:49.211   503-534   libprocessgroup         system_server                        I  Successfully killed process cgroup uid 10172 pid 17360 in 10ms
2024-03-18 15:41:49.234 27081-27081 Compatibil...geReporter com...le.android.apps.youtube.music  D  Compat change id reported: 147600208; UID 10143; state: ENABLED
2024-03-18 15:41:49.241   503-901   Compatibil...geReporter system_server                        D  Compat change id reported: 183164979; UID 10143; state: ENABLED
2024-03-18 15:41:49.283  3897-3906  .gms.persistent         com.google.android.gms.persistent    I  Background concurrent copying GC freed 328868(13MB) AllocSpace objects, 6(424KB) LOS objects, 49% free, 14MB/28MB, paused 59us,30us total 3.494s
2024-03-18 15:41:49.291  3897-3906  .gms.persistent         com.google.android.gms.persistent    W  Reducing the number of considered missed Gc histogram windows from 110 to 100
2024-03-18 15:41:49.435   316-316   Zygote                  pid-316                              I  Process 19081 exited due to signal 9 (Killed)
2024-03-18 15:41:49.443   503-523   DisplayManagerService   system_server                        D  Drop pending events for gone uid 10152
2024-03-18 15:41:49.483   503-901   ConnectivityService     system_server                        D  requestNetwork for uid/pid:10143/27081 activeRequest: null callbackRequest: 920 [NetworkRequest [ REQUEST id=921, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10143 RequestorUid: 10143 RequestorPkg: com.google.android.apps.youtube.music UnderlyingNetworks: Null] ]] callback flags: 0 order: 2147483647
2024-03-18 15:41:49.496   503-632   WifiNetworkFactory      system_server                        D  got request NetworkRequest [ REQUEST id=921, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10143 RequestorUid: 10143 RequestorPkg: com.google.android.apps.youtube.music UnderlyingNetworks: Null] ]
2024-03-18 15:41:49.497   503-632   UntrustedW...orkFactory system_server                        D  got request NetworkRequest [ REQUEST id=921, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10143 RequestorUid: 10143 RequestorPkg: com.google.android.apps.youtube.music UnderlyingNetworks: Null] ]
2024-03-18 15:41:49.501   503-632   OemPaidWif...orkFactory system_server                        D  got request NetworkRequest [ REQUEST id=921, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10143 RequestorUid: 10143 RequestorPkg: com.google.android.apps.youtube.music UnderlyingNetworks: Null] ]
2024-03-18 15:41:49.505   316-316   Zygote                  pid-316                              I  Process 17360 exited due to signal 9 (Killed)
2024-03-18 15:41:49.513   503-534   libprocessgroup         system_server                        I  Successfully killed process cgroup uid 10152 pid 19081 in 0ms
2024-03-18 15:41:49.514   503-523   DisplayManagerService   system_server                        D  Drop pending events for gone uid 10172
2024-03-18 15:41:49.522   503-632   MultiInter...orkFactory system_server                        D  got request NetworkRequest [ REQUEST id=921, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10143 RequestorUid: 10143 RequestorPkg: com.google.android.apps.youtube.music UnderlyingNetworks: Null] ]
2024-03-18 15:41:49.523   503-639   ConnectivityService     system_server                        D  NetReassign [921 : null → 101] [c 0] [a 2] [i 36]
2024-03-18 15:41:49.798 27081-27222 YouTubeMusic            com...le.android.apps.youtube.music  W  Invalid playback type; streaming data is not playable
2024-03-18 15:41:49.822   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 15:41:49.943 27081-27222 TrafficStats            com...le.android.apps.youtube.music  D  tagSocket(111) with statsTag=0xffffffff, statsUid=-1
2024-03-18 15:41:50.101 27081-27081 YouTubeMusic            com...le.android.apps.youtube.music  E  Trying to detachMediaView when it wasn't the most recent MediaView Setter
2024-03-18 15:41:50.138 27081-27167 Widget.RecentlyPlayed   com...le.android.apps.youtube.music  E  Filling bundle but recently played items are EMPTY.
2024-03-18 15:41:50.337 27081-27081 MediaSessionShuffleStat com...le.android.apps.youtube.music  W  attempted to update shuffle state but media session was null: 0
2024-03-18 15:41:50.378 27081-27145 GoogleTagManager        com...le.android.apps.youtube.music  W  Failed to extract the container from the resource file. Resource is a UTF-8 encoded string but doesn't contain a JSON container
2024-03-18 15:41:50.398 27081-27081 LoopStateAdapter        com...le.android.apps.youtube.music  W  attempted to update repeat mode but media session was null: 0
2024-03-18 15:41:50.431   503-1712  JobScheduler.JobStatus  system_server                        E  App com.google.android.apps.youtube.music became active but still in NEVER bucket
2024-03-18 15:41:50.470 27081-27187 Compatibil...geReporter com...le.android.apps.youtube.music  D  Compat change id reported: 263076149; UID 10143; state: DISABLED
2024-03-18 15:41:50.635   503-1270  Compatibil...geReporter system_server                        D  Compat change id reported: 161145287; UID 10123; state: DISABLED
2024-03-18 15:41:50.810 27114-27269 ClearcutMetricXmitter   com.google.android.dialer            V  Transmission is done.
2024-03-18 15:41:50.850 27081-27145 GoogleTagManager        com...le.android.apps.youtube.music  E  Invalid macro: _gtm.loadEventEnabled
2024-03-18 15:41:51.350 27081-27087 s.youtube.music         com...le.android.apps.youtube.music  W  Suspending all threads took: 7.049ms
2024-03-18 15:41:51.421 27081-27302 GoogleTagManager        com...le.android.apps.youtube.music  E  Invalid macro: _gtm.loadEventEnabled
2024-03-18 15:41:51.707   315-27306 resolv                  netd                                 I  GetAddrInfoHandler::run: {101 101 101 983141 10143 0}
2024-03-18 15:41:51.713   315-27308 resolv                  netd                                 I  res_nmkquery: (QUERY, IN, A)
2024-03-18 15:41:51.714   315-27307 resolv                  netd                                 I  res_nmkquery: (QUERY, IN, AAAA)
2024-03-18 15:41:51.790   315-27312 resolv                  netd                                 I  GetAddrInfoHandler::run: {101 101 101 983141 10143 0}
2024-03-18 15:41:51.792   315-27314 resolv                  netd                                 I  res_nmkquery: (QUERY, IN, A)
2024-03-18 15:41:51.793   315-27313 resolv                  netd                                 I  res_nmkquery: (QUERY, IN, AAAA)
2024-03-18 15:41:51.809   315-27307 resolv                  netd                                 I  res_tls_send: TLS query result: 0
2024-03-18 15:41:51.810   315-27307 resolv                  netd                                 I  doQuery: rcode=0, ancount=4, return value=468
2024-03-18 15:41:51.812   315-27313 resolv                  netd                                 I  res_tls_send: TLS query result: 0
2024-03-18 15:41:51.812   315-27313 resolv                  netd                                 I  doQuery: rcode=0, ancount=0, return value=468
2024-03-18 15:41:51.813   315-27314 resolv                  netd                                 I  res_tls_send: TLS query result: 0
2024-03-18 15:41:51.813   315-27314 resolv                  netd                                 I  doQuery: rcode=0, ancount=1, return value=468
2024-03-18 15:41:51.815 27081-27309 TrafficStats            com...le.android.apps.youtube.music  D  tagSocket(124) with statsTag=0xffffffff, statsUid=-1
2024-03-18 15:41:51.817   315-27308 resolv                  netd                                 I  res_tls_send: TLS query result: 0
2024-03-18 15:41:51.817   315-27308 resolv                  netd                                 I  doQuery: rcode=0, ancount=16, return value=468
2024-03-18 15:41:51.831 27081-27309 DynamiteModule          com...le.android.apps.youtube.music  W  Local module descriptor class for com.google.android.gms.providerinstaller.dynamite not found.
2024-03-18 15:41:51.836  3897-3911  ProviderHelper          com.google.android.gms.persistent    W  Unknown dynamite feature providerinstaller.dynamite
2024-03-18 15:41:51.839 27081-27309 ProviderInstaller       com...le.android.apps.youtube.music  W  Failed to load providerinstaller module: No acceptable module com.google.android.gms.providerinstaller.dynamite found. Local version is 0 and remote version is 0.
2024-03-18 15:41:51.849 27081-27309 ApplicationLoaders      com...le.android.apps.youtube.music  D  Returning zygote-cached class loader: /system_ext/framework/androidx.window.extensions.jar
2024-03-18 15:41:51.849 27081-27309 ApplicationLoaders      com...le.android.apps.youtube.music  D  Returning zygote-cached class loader: /system_ext/framework/androidx.window.sidecar.jar
2024-03-18 15:41:51.876 27081-27309 NativeCrypto            com...le.android.apps.youtube.music  V  Registering com/google/android/gms/org/conscrypt/NativeCrypto's 295 native methods...
2024-03-18 15:41:52.021 27081-27309 s.youtube.music         com...le.android.apps.youtube.music  I  Waiting for a blocking GC ClassLinker
2024-03-18 15:41:52.027 27081-27309 ProviderInstaller       com...le.android.apps.youtube.music  I  Installed default security provider GmsCore_OpenSSL
2024-03-18 15:41:52.291   315-27318 resolv                  netd                                 I  GetAddrInfoHandler::run: {101 101 101 983141 10143 0}
2024-03-18 15:41:52.293   315-27320 resolv                  netd                                 I  res_nmkquery: (QUERY, IN, A)
2024-03-18 15:41:52.296   315-27319 resolv                  netd                                 I  res_nmkquery: (QUERY, IN, AAAA)
2024-03-18 15:41:52.312   315-27320 resolv                  netd                                 I  res_tls_send: TLS query result: 0
2024-03-18 15:41:52.313   315-27320 resolv                  netd                                 I  doQuery: rcode=0, ancount=1, return value=468
2024-03-18 15:41:52.315   315-27319 resolv                  netd                                 I  res_tls_send: TLS query result: 0
2024-03-18 15:41:52.316   315-27319 resolv                  netd                                 I  doQuery: rcode=0, ancount=1, return value=468
2024-03-18 15:41:52.319 27081-27309 TrafficStats            com...le.android.apps.youtube.music  D  tagSocket(134) with statsTag=0xffffffff, statsUid=-1
2024-03-18 15:41:52.334 27081-27309 DynamiteModule          com...le.android.apps.youtube.music  W  Local module descriptor class for com.google.android.gms.providerinstaller.dynamite not found.
2024-03-18 15:41:52.337  3897-3911  ProviderHelper          com.google.android.gms.persistent    W  Unknown dynamite feature providerinstaller.dynamite
2024-03-18 15:41:52.340 27081-27309 ProviderInstaller       com...le.android.apps.youtube.music  W  Failed to load providerinstaller module: No acceptable module com.google.android.gms.providerinstaller.dynamite found. Local version is 0 and remote version is 0.
2024-03-18 15:41:52.662 27081-27309 TrafficStats            com...le.android.apps.youtube.music  D  tagSocket(137) with statsTag=0xffffffff, statsUid=-1
2024-03-18 15:41:52.933 27081-27309 TrafficStats            com...le.android.apps.youtube.music  D  tagSocket(140) with statsTag=0xffffffff, statsUid=-1
2024-03-18 15:41:53.355   315-27321 resolv                  netd                                 I  GetAddrInfoHandler::run: {101 101 101 983141 10143 0}
2024-03-18 15:41:53.357   315-27323 resolv                  netd                                 I  res_nmkquery: (QUERY, IN, A)
2024-03-18 15:41:53.358   315-27322 resolv                  netd                                 I  res_nmkquery: (QUERY, IN, AAAA)
2024-03-18 15:41:53.366   315-27323 resolv                  netd                                 I  res_tls_send: TLS query result: 0
2024-03-18 15:41:53.367   315-27323 resolv                  netd                                 I  doQuery: rcode=0, ancount=1, return value=468
2024-03-18 15:41:53.369   315-27322 resolv                  netd                                 I  res_tls_send: TLS query result: 0
2024-03-18 15:41:53.369   315-27322 resolv                  netd                                 I  doQuery: rcode=0, ancount=0, return value=468
2024-03-18 15:41:53.370 27081-27309 TrafficStats            com...le.android.apps.youtube.music  D  tagSocket(143) with statsTag=0xffffffff, statsUid=-1
2024-03-18 15:41:53.759 20712-20747 TraceManagerImpl        com.google.android.apps.wellbeing    E  Trace Application creation timed out after 3445433 ms. Complete trace: # ksi@c906701a
                                                                                                    ksn: 
                                                                                                        at tk_trace.Query: 
                                                                                                            SELECT
                                                                                                              timestamp_millis,
                                                                                                              bedtime_proto
                                                                                                            FROM bedtime
                                                                                                           ORDER BY timestamp_millis ASC(Started After:0)
2024-03-18 15:41:54.069  3897-3897  BoundBrokerSvc          com.google.android.gms.persistent    D  onUnbind: Intent { act=com.google.android.gms.clearcut.bootcount.service.START dat=chimera-action:/... cmp=com.google.android.gms/.chimera.PersistentBoundBrokerService }
2024-03-18 15:41:54.963 26363-26419 Bugle                   com.google.android.apps.messaging    W  TextClassifierLibManagerImpl: Reclaiming memory at level: 40
2024-03-18 15:41:56.232   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:41:57.002   315-315   netd                    netd                                 I  setProcSysNet(4, 2, wlan0, retrans_time_ms, 750) <0.47ms>
2024-03-18 15:41:57.004   315-315   netd                    netd                                 I  setProcSysNet(4, 2, wlan0, ucast_solicit, 10) <0.12ms>
2024-03-18 15:41:57.008   315-315   netd                    netd                                 I  setProcSysNet(6, 2, wlan0, retrans_time_ms, 750) <0.13ms>
2024-03-18 15:41:57.009   315-315   netd                    netd                                 I  setProcSysNet(6, 2, wlan0, ucast_solicit, 10) <0.67ms>
2024-03-18 15:41:57.124  3897-3897  BoundBrokerSvc          com.google.android.gms.persistent    D  onUnbind: Intent { act=com.google.android.contextmanager.service.ContextManagerService.START pkg=com.google.android.gms }
2024-03-18 15:41:57.756 15998-15998 BoundBrokerSvc          com.google.android.gms               D  onUnbind: Intent { act=com.google.android.gms.potokens.service.START dat=chimera-action:/... cmp=com.google.android.gms/.chimera.GmsApiService }
2024-03-18 15:41:58.256   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 15:41:58.933   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 15:42:00.023   711-827   Looper                  com.android.systemui                 W  Drained
2024-03-18 15:42:00.031  5925-5987  AiAiEcho                com.google.android.as                I  Predicting[0]: 
2024-03-18 15:42:00.033  5925-5987  AiAiEcho                com.google.android.as                I  EchoTargets: 
                                                                                                    Filtered by AiAi flag check: 
2024-03-18 15:42:00.065  5925-5987  AiAiEcho                com.google.android.as                I  Ranked targets strategy: SORT, count: 0, ranking metadata: 
2024-03-18 15:42:00.075  5925-5987  AiAiEcho                com.google.android.as                I  #postPredictionTargets: Sending updates to UISurface lockscreen with targets# 0 (types=[])
2024-03-18 15:42:00.104   711-711   PageIndicator           com.android.systemui                 W  Total number of pages invalid: 0. Assuming 1 page.
2024-03-18 15:42:00.200   711-820   EGL_emulation           com.android.systemui                 D  app_time_stats: avg=23103.49ms min=23103.49ms max=23103.49ms count=1
2024-03-18 15:42:00.318 15998-15998 BoundBrokerSvc          com.google.android.gms               D  onUnbind: Intent { act=com.google.android.gms.measurement.START pkg=com.google.android.gms }
2024-03-18 15:42:01.944   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 15:42:03.355 15998-15998 BoundBrokerSvc          com.google.android.gms               D  onUnbind: Intent { act=com.google.android.gms.people.contactssync.service.START pkg=com.google.android.gms }
2024-03-18 15:42:04.428   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:42:04.820   503-584   ActivityManager         system_server                        D  freezing 27225 android.process.acore
2024-03-18 15:42:04.953   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 15:42:04.992   503-584   ActivityManager         system_server                        D  freezing 26425 com.android.settings
2024-03-18 15:42:04.994   503-584   ActivityManager         system_server                        D  freezing 26363 com.google.android.apps.messaging
2024-03-18 15:42:05.436   503-584   ActivityManager         system_server                        D  freezing 26800 com.google.android.apps.photos
2024-03-18 15:42:05.716  3897-3897  BoundBrokerSvc          com.google.android.gms.persistent    D  onUnbind: Intent { act=com.google.android.gms.phenotype.service.START pkg=com.google.android.gms }
2024-03-18 15:42:06.803   503-584   ActivityManager         system_server                        D  freezing 16843 com.google.android.gm
2024-03-18 15:42:07.098   503-584   ActivityManager         system_server                        D  freezing 16045 com.google.process.gservices
2024-03-18 15:42:07.630   503-584   ActivityManager         system_server                        D  freezing 16929 com.google.android.rkpdapp
2024-03-18 15:42:07.720   503-584   ActivityManager         system_server                        D  freezing 16958 com.google.android.tts
2024-03-18 15:42:07.880   503-584   ActivityManager         system_server                        D  freezing 26820 com.google.android.youtube
2024-03-18 15:42:08.303   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 15:42:08.321   711-820   EGL_emulation           com.android.systemui                 D  app_time_stats: avg=8120.58ms min=8120.58ms max=8120.58ms count=1
2024-03-18 15:42:08.943   503-584   ActivityManager         system_server                        D  freezing 16886 com.google.android.permissioncontroller
2024-03-18 15:42:10.314   503-584   ActivityManager         system_server                        D  freezing 20712 com.google.android.apps.wellbeing
2024-03-18 15:42:10.970   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 15:42:11.469   503-584   ActivityManager         system_server                        D  freezing 27081 com.google.android.apps.youtube.music
2024-03-18 15:42:12.097   503-584   ActivityManager         system_server                        D  freezing 27096 com.google.android.contacts
2024-03-18 15:42:12.360   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:42:12.751   503-584   ActivityManager         system_server                        D  freezing 27114 com.google.android.dialer
2024-03-18 15:42:13.365   503-584   ActivityManager         system_server                        D  freezing 15998 com.google.android.gms
2024-03-18 15:42:17.066   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 15:42:18.274   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 15:42:20.078   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 15:42:20.295   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:42:23.097   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 15:42:28.231   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:42:28.300   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 15:42:36.431   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:42:38.312   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 15:42:39.282   503-901   BatteryExt...tatsWorker system_server                        W  error reading Bluetooth stats: 11
2024-03-18 15:42:44.360   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:42:48.304   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 15:42:52.296   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:42:58.295   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 15:43:00.046  5925-5987  AiAiEcho                com.google.android.as                I  Predicting[0]: 
2024-03-18 15:43:00.047  5925-5987  AiAiEcho                com.google.android.as                I  EchoTargets: 
                                                                                                    Filtered by AiAi flag check: 
2024-03-18 15:43:00.052  5925-5987  AiAiEcho                com.google.android.as                I  Ranked targets strategy: SORT, count: 0, ranking metadata: 
2024-03-18 15:43:00.073  5925-5987  AiAiEcho                com.google.android.as                I  #postPredictionTargets: Sending updates to UISurface lockscreen with targets# 0 (types=[])
2024-03-18 15:43:00.121   711-711   PageIndicator           com.android.systemui                 W  Total number of pages invalid: 0. Assuming 1 page.
2024-03-18 15:43:00.167   711-820   EGL_emulation           com.android.systemui                 D  app_time_stats: avg=51845.81ms min=51845.81ms max=51845.81ms count=1
2024-03-18 15:43:00.251   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:43:08.311   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 15:43:08.424   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:43:16.360   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:43:18.280   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 15:43:24.296   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:43:28.299   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 15:43:32.232   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:43:38.277   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 15:43:40.425   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:43:48.335   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 15:43:48.364   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:43:48.373   711-820   EGL_emulation           com.android.systemui                 D  app_time_stats: avg=48204.75ms min=48204.75ms max=48204.75ms count=1
2024-03-18 15:43:48.496   503-901   WifiNl80211Manager      system_server                        D  Scan result ready event
2024-03-18 15:43:48.498   503-901   WifiNative              system_server                        D  Scan result ready event
2024-03-18 15:43:56.297   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:43:58.284   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 15:44:00.024  5925-5987  AiAiEcho                com.google.android.as                I  Predicting[0]: 
2024-03-18 15:44:00.026  5925-5987  AiAiEcho                com.google.android.as                I  EchoTargets: 
                                                                                                    Filtered by AiAi flag check: 
2024-03-18 15:44:00.028  5925-5987  AiAiEcho                com.google.android.as                I  Ranked targets strategy: SORT, count: 0, ranking metadata: 
2024-03-18 15:44:00.036  5925-5987  AiAiEcho                com.google.android.as                I  #postPredictionTargets: Sending updates to UISurface lockscreen with targets# 0 (types=[])
2024-03-18 15:44:00.091   711-711   PageIndicator           com.android.systemui                 W  Total number of pages invalid: 0. Assuming 1 page.
2024-03-18 15:44:00.141   711-820   EGL_emulation           com.android.systemui                 D  app_time_stats: avg=11765.44ms min=11765.44ms max=11765.44ms count=1
2024-03-18 15:44:04.232   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:44:08.282   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 15:44:12.424   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:44:16.742  3897-27065 AlarmManager            com.google.android.gms.persistent    I  setExactAndAllowWhileIdle [name: GCM_HB_ALARM type: 2 triggerAtMillis: 17069342]
2024-03-18 15:44:16.770  3897-27065 WakeLock                com.google.android.gms.persistent    E  GCM_HB_ALARM release without a matched acquire!
2024-03-18 15:44:16.820  3897-3897  BoundBrokerSvc          com.google.android.gms.persistent    D  onBind: Intent { act=com.google.android.gms.scheduler.ACTION_PROXY_SCHEDULE dat=chimera-action:/... cmp=com.google.android.gms/.chimera.PersistentApiService }
2024-03-18 15:44:16.822  3897-3897  BoundBrokerSvc          com.google.android.gms.persistent    D  Loading bound service for intent: Intent { act=com.google.android.gms.scheduler.ACTION_PROXY_SCHEDULE dat=chimera-action:/... cmp=com.google.android.gms/.chimera.PersistentApiService }
2024-03-18 15:44:17.540   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 15:44:18.286   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 15:44:20.361   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:44:20.549   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 15:44:22.388  3897-4795  PhenotypeProcessReaper  com.google.android.gms.persistent    I  Memory state is: 125
2024-03-18 15:44:23.555   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 15:44:26.564   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 15:44:28.295   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:44:28.320   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 15:44:28.333   711-820   EGL_emulation           com.android.systemui                 D  app_time_stats: avg=28190.57ms min=28190.57ms max=28190.57ms count=1
2024-03-18 15:44:31.909  3897-3897  BoundBrokerSvc          com.google.android.gms.persistent    D  onUnbind: Intent { act=com.google.android.gms.scheduler.ACTION_PROXY_SCHEDULE dat=chimera-action:/... cmp=com.google.android.gms/.chimera.PersistentApiService }
2024-03-18 15:44:36.231   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:44:38.285   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 15:44:44.424   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:44:48.285   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 15:44:52.360   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:44:58.284   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 15:45:00.023  5925-5987  AiAiEcho                com.google.android.as                I  Predicting[0]: 
2024-03-18 15:45:00.026  5925-5987  AiAiEcho                com.google.android.as                I  EchoTargets: 
                                                                                                    Filtered by AiAi flag check: 
2024-03-18 15:45:00.029  5925-5987  AiAiEcho                com.google.android.as                I  Ranked targets strategy: SORT, count: 0, ranking metadata: 
2024-03-18 15:45:00.034  5925-5987  AiAiEcho                com.google.android.as                I  #postPredictionTargets: Sending updates to UISurface lockscreen with targets# 0 (types=[])
2024-03-18 15:45:00.037   711-711   PageIndicator           com.android.systemui                 W  Total number of pages invalid: 0. Assuming 1 page.
2024-03-18 15:45:00.084  5925-5987  AiAiEcho                com.google.android.as                I  Predicting[0]: 
2024-03-18 15:45:00.086  5925-5987  AiAiEcho                com.google.android.as                I  EchoTargets: 
                                                                                                    Filtered by AiAi flag check: 
2024-03-18 15:45:00.090  5925-5987  AiAiEcho                com.google.android.as                I  Ranked targets strategy: SORT, count: 0, ranking metadata: 
2024-03-18 15:45:00.096   711-820   EGL_emulation           com.android.systemui                 D  app_time_stats: avg=31762.75ms min=31762.75ms max=31762.75ms count=1
2024-03-18 15:45:00.138  5925-5987  AiAiEcho                com.google.android.as                I  #postPredictionTargets: Sending updates to UISurface lockscreen with targets# 0 (types=[])
2024-03-18 15:45:00.141   711-711   PageIndicator           com.android.systemui                 W  Total number of pages invalid: 0. Assuming 1 page.
2024-03-18 15:45:00.296   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:45:05.184  3897-27039 WakeLock                com.google.android.gms.persistent    E  GCM_HB_ALARM release without a matched acquire!
2024-03-18 15:45:05.186  3897-27039 WakeLock                com.google.android.gms.persistent    W  GCM_HB_ALARM counter does not exist
2024-03-18 15:45:05.193   503-639   ConnectivityService     system_server                        D  reportNetworkConnectivity(101, false) by 10130
2024-03-18 15:45:05.197   804-1642  NetworkMonitor/101      com.android.networkstack.process     D  Forcing reevaluation for UID 10130. Dns signal count: 0
2024-03-18 15:45:05.215   804-27334 TrafficStats            com.android.networkstack.process     D  tagSocket(5) with statsTag=0xffffff81, statsUid=-1
2024-03-18 15:45:05.220   804-27335 TrafficStats            com.android.networkstack.process     D  tagSocket(68) with statsTag=0xffffff81, statsUid=-1
2024-03-18 15:45:05.229   804-27335 TrafficStats            com.android.networkstack.process     D  tagSocket(68) with statsTag=0xffffff81, statsUid=-1
2024-03-18 15:45:05.233   804-27334 TrafficStats            com.android.networkstack.process     D  tagSocket(5) with statsTag=0xffffff81, statsUid=-1
2024-03-18 15:45:05.243   315-27337 resolv                  netd                                 I  ResNSendHandler::run: 0 / {101 983141 101 983141 1073 1}
2024-03-18 15:45:05.245   315-27336 resolv                  netd                                 I  ResNSendHandler::run: 0 / {101 983141 101 983141 1073 1}
2024-03-18 15:45:05.256   315-27338 resolv                  netd                                 I  ResNSendHandler::run: 0 / {101 983141 101 983141 1073 1}
2024-03-18 15:45:05.260   315-27339 resolv                  netd                                 I  ResNSendHandler::run: 0 / {101 983141 101 983141 1073 1}
2024-03-18 15:45:05.263   315-27337 resolv                  netd                                 I  res_nsend: used send_dg 60 terrno: 0
2024-03-18 15:45:05.268   315-27336 resolv                  netd                                 I  res_nsend: used send_dg 75 terrno: 0
2024-03-18 15:45:05.271   315-27338 resolv                  netd                                 I  res_nsend: used send_dg 63 terrno: 0
2024-03-18 15:45:05.276   315-27339 resolv                  netd                                 I  res_nsend: used send_dg 48 terrno: 0
2024-03-18 15:45:05.285   804-804   TrafficStats            com.android.networkstack.process     D  tagSocket(5) with statsTag=0xffffffff, statsUid=-1
2024-03-18 15:45:05.291   804-804   TrafficStats            com.android.networkstack.process     D  tagSocket(5) with statsTag=0xffffffff, statsUid=-1
2024-03-18 15:45:05.295   804-27335 NetworkMonitor/101      com.android.networkstack.process     D  PROBE_DNS connectivitycheck.gstatic.com 74ms OK 142.250.207.227,2404:6800:4002:82c::2003
2024-03-18 15:45:05.300   804-804   TrafficStats            com.android.networkstack.process     D  tagSocket(5) with statsTag=0xffffffff, statsUid=-1
2024-03-18 15:45:05.304   804-804   TrafficStats            com.android.networkstack.process     D  tagSocket(5) with statsTag=0xffffffff, statsUid=-1
2024-03-18 15:45:05.310   804-27334 NetworkMonitor/101      com.android.networkstack.process     D  PROBE_DNS www.google.com 95ms OK 142.250.194.164,2404:6800:4002:81e::2004
2024-03-18 15:45:05.317   315-27341 resolv                  netd                                 I  GetAddrInfoHandler::run: {101 983141 101 983141 1073 1}
2024-03-18 15:45:05.319   315-27340 resolv                  netd                                 I  GetAddrInfoHandler::run: {101 983141 101 983141 1073 1}
2024-03-18 15:45:05.328   315-27343 resolv                  netd                                 I  res_nmkquery: (QUERY, IN, A)
2024-03-18 15:45:05.330   315-27344 resolv                  netd                                 I  res_nmkquery: (QUERY, IN, AAAA)
2024-03-18 15:45:05.333   315-27342 resolv                  netd                                 I  res_nmkquery: (QUERY, IN, AAAA)
2024-03-18 15:45:05.336   315-27345 resolv                  netd                                 I  res_nmkquery: (QUERY, IN, A)
2024-03-18 15:45:05.337   315-27343 resolv                  netd                                 I  resolv_cache_lookup: FOUND IN CACHE entry=0xb40000767f65add0
2024-03-18 15:45:05.338   315-27343 resolv                  netd                                 I  doQuery: rcode=0, ancount=1, return value=63
2024-03-18 15:45:05.338   315-27345 resolv                  netd                                 I  resolv_cache_lookup: FOUND IN CACHE entry=0xb40000766f6693d0
2024-03-18 15:45:05.341   315-27345 resolv                  netd                                 I  doQuery: rcode=0, ancount=1, return value=48
2024-03-18 15:45:05.342   315-27344 resolv                  netd                                 I  resolv_cache_lookup: FOUND IN CACHE entry=0xb4000076ff65ecd0
2024-03-18 15:45:05.343   315-27344 resolv                  netd                                 I  doQuery: rcode=0, ancount=1, return value=60
2024-03-18 15:45:05.344   315-27342 resolv                  netd                                 I  resolv_cache_lookup: FOUND IN CACHE entry=0xb40000767f659710
2024-03-18 15:45:05.346   315-27342 resolv                  netd                                 I  doQuery: rcode=0, ancount=1, return value=75
2024-03-18 15:45:05.352   804-27334 TrafficStats            com.android.networkstack.process     D  tagSocket(5) with statsTag=0xffffff81, statsUid=-1
2024-03-18 15:45:05.356   804-27335 TrafficStats            com.android.networkstack.process     D  tagSocket(68) with statsTag=0xffffff81, statsUid=-1
2024-03-18 15:45:05.370   315-27347 resolv                  netd                                 I  GetAddrInfoHandler::run: {101 786533 101 983141 10130 0}
2024-03-18 15:45:05.382   315-27349 resolv                  netd                                 I  res_nmkquery: (QUERY, IN, A)
2024-03-18 15:45:05.384   315-27348 resolv                  netd                                 I  res_nmkquery: (QUERY, IN, AAAA)
2024-03-18 15:45:05.393   804-27335 NetworkMonitor/101      com.android.networkstack.process     D  PROBE_HTTP http://connectivitycheck.gstatic.com/generate_204 time=86ms ret=204 request={Connection=[close], User-Agent=[Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.32 Safari/537.36]} headers={null=[HTTP/1.1 204 No Content], Connection=[close], Content-Length=[0], Cross-Origin-Resource-Policy=[cross-origin], Date=[Mon, 18 Mar 2024 10:15:06 GMT], X-Android-Received-Millis=[1710756905390], X-Android-Response-Source=[NETWORK 204], X-Android-Selected-Protocol=[http/1.1], X-Android-Sent-Millis=[1710756905376]}
2024-03-18 15:45:05.507   315-27348 resolv                  netd                                 I  res_tls_send: TLS query result: 0
2024-03-18 15:45:05.507   315-27348 resolv                  netd                                 I  doQuery: rcode=0, ancount=2, return value=468
2024-03-18 15:45:05.508   315-27349 resolv                  netd                                 I  res_tls_send: TLS query result: 0
2024-03-18 15:45:05.508   315-27349 resolv                  netd                                 I  doQuery: rcode=0, ancount=2, return value=468
2024-03-18 15:45:05.512  3897-26796 TrafficStats            com.google.android.gms.persistent    D  tagSocket(-1) with statsTag=0x20000407, statsUid=-1
2024-03-18 15:45:05.513  3897-26796 TrafficStats            com.google.android.gms.persistent    I  tagSocketFd(-1, 536871943, -1) failed with errno-9
2024-03-18 15:45:05.514  3897-26796 TrafficStats            com.google.android.gms.persistent    D  tagSocket(79) with statsTag=0x20000407, statsUid=-1
2024-03-18 15:45:05.519   804-27334 NetworkMonitor/101      com.android.networkstack.process     D  PROBE_HTTPS https://www.google.com/generate_204 time=205ms ret=204 request={Connection=[close], User-Agent=[Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.32 Safari/537.36]} headers={null=[HTTP/1.1 204 No Content], Alt-Svc=[h3=":443"; ma=2592000,h3-29=":443"; ma=2592000], Connection=[close], Content-Length=[0], Cross-Origin-Resource-Policy=[cross-origin], Date=[Mon, 18 Mar 2024 10:15:06 GMT], X-Android-Received-Millis=[1710756905517], X-Android-Response-Source=[NETWORK 204], X-Android-Selected-Protocol=[http/1.1], X-Android-Sent-Millis=[1710756905502]}
2024-03-18 15:45:05.522   804-27333 NetworkMonitor/101      com.android.networkstack.process     D  isCaptivePortal: isSuccessful()=true isPortal()=false RedirectUrl=null isPartialConnectivity()=false Time=312ms
2024-03-18 15:45:05.528   503-639   ConnectivityService     system_server                        D  [101 WIFI] validation passed
2024-03-18 15:45:05.674   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 15:45:05.708  3897-27039 AlarmManager            com.google.android.gms.persistent    I  setExactAndAllowWhileIdle [name: GCM_HB_ALARM type: 2 triggerAtMillis: 17228308]
2024-03-18 15:45:05.725  3897-3897  BoundBrokerSvc          com.google.android.gms.persistent    D  onBind: Intent { act=com.google.android.gms.scheduler.ACTION_PROXY_SCHEDULE dat=chimera-action:/... cmp=com.google.android.gms/.chimera.PersistentApiService }
2024-03-18 15:45:05.727  3897-3897  BoundBrokerSvc          com.google.android.gms.persistent    D  Loading bound service for intent: Intent { act=com.google.android.gms.scheduler.ACTION_PROXY_SCHEDULE dat=chimera-action:/... cmp=com.google.android.gms/.chimera.PersistentApiService }
2024-03-18 15:45:05.816  3897-27065 AlarmManager            com.google.android.gms.persistent    I  setExactAndAllowWhileIdle [name: GCM_HB_ALARM type: 2 triggerAtMillis: 17228417]
2024-03-18 15:45:05.830  3897-27065 AlarmManager            com.google.android.gms.persistent    I  setExactAndAllowWhileIdle [name: GCM_HB_ALARM type: 2 triggerAtMillis: 17228431]
2024-03-18 15:45:08.231   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:45:08.316   711-820   EGL_emulation           com.android.systemui                 D  app_time_stats: avg=8191.04ms min=8191.04ms max=8191.04ms count=1
2024-03-18 15:45:08.322   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 15:45:11.686   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 15:45:14.693   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 15:45:16.424   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:45:18.286   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 15:45:20.708   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 15:45:20.850  3897-3897  BoundBrokerSvc          com.google.android.gms.persistent    D  onUnbind: Intent { act=com.google.android.gms.scheduler.ACTION_PROXY_SCHEDULE dat=chimera-action:/... cmp=com.google.android.gms/.chimera.PersistentApiService }
2024-03-18 15:45:23.715   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 15:45:24.360   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:45:26.724   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 15:45:28.280   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 15:45:29.748   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 15:45:32.296   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:45:32.786   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 15:45:35.826   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 15:45:38.337   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 15:45:40.232   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 15:45:41.872   503-632   WifiStaIfaceAidlImpl    system_server                        E  installApfPacketFilter failed with service-specific exception: android.os.ServiceSpecificException:  (code 4)
2024-03-18 15:45:41.878   503-901   system_server           system_server                        W  Long monitor contention with owner binder:503_1A (2344) at void com.android.internal.os.BinderCallsStats.processCallEnded(com.android.internal.os.BinderInternal$CallSession, int, int, int)(BinderCallsStats.java:358) waiters=1 in void com.android.internal.os.BinderCallsStats.processCallEnded(com.android.internal.os.BinderInternal$CallSession, int, int, int) for 221ms
2024-03-18 15:45:41.880   503-2352  system_server           system_server                        W  Long monitor contention with owner binder:503_1A (2344) at void com.android.internal.os.BinderCallsStats.processCallEnded(com.android.internal.os.BinderInternal$CallSession, int, int, int)(BinderCallsStats.java:358) waiters=2 in void com.android.internal.os.BinderCallsStats.processCallEnded(com.android.internal.os.BinderInternal$CallSession, int, int, int) for 328ms
2024-03-18 15:45:41.901   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 15:45:41.922   503-522   SystemClockTime         system_server                        D  Setting time of day to sec=1710758674
2024-03-18 16:14:34.386   503-588   LazyAlarmStore          system_server                        E  Removed TIME_TICK alarm
2024-03-18 16:14:34.431   503-532   ActivityManager         system_server                        D  sync unfroze 26425 com.android.settings for 10
2024-03-18 16:14:34.432   503-532   ActivityManager         system_server                        I  Killing 16843:com.google.android.gm/u0a145 (adj 985): empty #17
2024-03-18 16:14:34.524   503-503   DevicePolicyManager     system_server                        D  updateSystemUpdateFreezePeriodsRecord
2024-03-18 16:14:34.528   503-503   ConditionProviders.SCP  system_server                        D  onReceive android.intent.action.TIME_SET
2024-03-18 16:14:34.634   503-523   Looper                  system_server                        W  Slow dispatch took 173ms android.ui h=com.android.server.am.ActivityManagerService$UiHandler c=com.android.server.am.UidObserverController$$ExternalSyntheticLambda0@e791f4d m=0
2024-03-18 16:14:34.639   503-532   ActivityManager         system_server                        D  sync unfroze 26363 com.google.android.apps.messaging for 3
2024-03-18 16:14:34.758   503-534   libprocessgroup         system_server                        I  Successfully killed process cgroup uid 10145 pid 16843 in 316ms
2024-03-18 16:14:34.759   503-503   ConditionProviders.SCP  system_server                        D  evaluateSubscriptionLocked cal=ScheduleCalendar[mDays={1, 2, 3, 4, 5, 6, 7}, mSchedule=ScheduleInfo{days=[1, 2, 3, 4, 5, 6, 7], startHour=22, startMinute=0, endHour=7, endMinute=0, exitAtAlarm=true, nextAlarm=Thu Jan 01 05:30:00 GMT+05:30 1970 (0)}], now=Mon Mar 18 16:14:34 GMT+05:30 2024 (1710758674528), nextUserAlarmTime=Thu Jan 01 05:30:00 GMT+05:30 1970 (0)
2024-03-18 16:14:34.760   503-503   ConditionProviders.SCP  system_server                        D  notifyCondition condition://android/schedule?days=1.2.3.4.5.6.7&start=22.0&end=7.0&exitAtAlarm=true STATE_FALSE reason=!meetsSchedule
2024-03-18 16:14:34.799   503-503   ConditionProviders.SCP  system_server                        D  Scheduling evaluate for Mon Mar 18 22:00:00 GMT+05:30 2024 (1710779400000), in +5h45m25s472ms, now=Mon Mar 18 16:14:34 GMT+05:30 2024 (1710758674528)
2024-03-18 16:14:34.961   503-532   ActivityManager         system_server                        D  sync unfroze 26800 com.google.android.apps.photos for 3
2024-03-18 16:14:34.966   503-532   ActivityManager         system_server                        D  sync unfroze 20712 com.google.android.apps.wellbeing for 3
2024-03-18 16:14:34.988   315-315   netd                    netd                                 I  tetherGetStats() -> {[]} <13.78ms>
2024-03-18 16:14:35.040   503-503   Looper                  system_server                        W  Slow dispatch took 512ms main h=android.app.ActivityThread$H c=android.app.LoadedApk$ReceiverDispatcher$Args$$ExternalSyntheticLambda0@884dd16 m=0
2024-03-18 16:14:35.040   503-503   Looper                  system_server                        W  Slow delivery took 512ms main h=android.app.ActivityThread$H c=android.app.LoadedApk$ReceiverDispatcher$Args$$ExternalSyntheticLambda0@f30697 m=0
2024-03-18 16:14:35.750   711-827   Looper                  com.android.systemui                 W  Slow dispatch took 1007ms BroadcastRunning h=android.os.Handler c=com.android.systemui.broadcast.ActionReceiver$onReceive$1@4b97dc3 m=0
2024-03-18 16:14:35.821   711-827   Looper                  com.android.systemui                 W  Slow delivery took 1008ms BroadcastRunning h=android.os.Handler c=com.android.systemui.broadcast.ActionReceiver$onReceive$1@f1e2640 m=0
2024-03-18 16:14:35.952   503-532   ActivityManager         system_server                        D  sync unfroze 27081 com.google.android.apps.youtube.music for 3
2024-03-18 16:14:35.959  5925-5987  AiAiEcho                com.google.android.as                I  Predicting[0]: 
2024-03-18 16:14:35.974  5925-5987  AiAiEcho                com.google.android.as                I  EchoTargets: 
                                                                                                    Filtered by AiAi flag check: 
2024-03-18 16:14:35.975  5925-5987  AiAiEcho                com.google.android.as                I  Ranked targets strategy: SORT, count: 0, ranking metadata: 
2024-03-18 16:14:35.994  5925-5987  AiAiEcho                com.google.android.as                I  #postPredictionTargets: Sending updates to UISurface lockscreen with targets# 0 (types=[])
2024-03-18 16:14:36.086   711-711   PageIndicator           com.android.systemui                 W  Total number of pages invalid: 0. Assuming 1 page.
2024-03-18 16:14:36.377   711-820   EGL_emulation           com.android.systemui                 D  app_time_stats: avg=35598.06ms min=35598.06ms max=35598.06ms count=1
2024-03-18 16:14:36.452   503-647   ContentProviderHelper   system_server                        W  Slow operation: 71ms so far, now at getContentProviderImpl: after updateOomAdj
2024-03-18 16:14:36.455   503-647   ContentProviderHelper   system_server                        W  Slow operation: 74ms so far, now at getContentProviderImpl: done!
2024-03-18 16:14:37.934   503-532   ActivityManager         system_server                        D  sync unfroze 27096 com.google.android.contacts for 3
2024-03-18 16:14:38.052   503-503   Looper                  system_server                        W  Drained
2024-03-18 16:14:38.053   503-630   system_server           system_server                        W  Long monitor contention with owner NetworkStats (628) at void android.net.connectivity.com.android.server.net.NetworkStatsService.performPoll(int)(NetworkStatsService.java:2333) waiters=0 in android.net.NetworkStatsHistory android.net.connectivity.com.android.server.net.NetworkStatsService.internalGetHistoryForNetwork(android.net.NetworkTemplate, int, int, int, int, long, long) for 2.439s
2024-03-18 16:14:38.061   503-631   system_server           system_server                        W  Long monitor contention with owner NetworkStats (628) at void android.net.connectivity.com.android.server.net.NetworkStatsService.performPoll(int)(NetworkStatsService.java:2333) waiters=1 in void android.net.connectivity.com.android.server.net.NetworkStatsService.noteUidForeground(int, boolean) for 1.607s
2024-03-18 16:14:38.073   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 16:14:38.116   315-315   netd                    netd                                 I  bandwidthSetGlobalAlert(2097152) <0.66ms>
2024-03-18 16:14:38.118   503-532   ActivityManager         system_server                        W  Slow operation: 84ms so far, now at startProcess: done creating new process record
2024-03-18 16:14:38.118   503-532   ActivityManager         system_server                        W  Slow operation: 84ms so far, now at startProcess: stepping in to startProcess
2024-03-18 16:14:38.120   503-532   Compatibil...geReporter system_server                        D  Compat change id reported: 135634846; UID 10152; state: DISABLED
2024-03-18 16:14:38.125   503-532   Compatibil...geReporter system_server                        D  Compat change id reported: 177438394; UID 10152; state: DISABLED
2024-03-18 16:14:38.125   503-532   Compatibil...geReporter system_server                        D  Compat change id reported: 135772972; UID 10152; state: DISABLED
2024-03-18 16:14:38.127   503-532   Compatibil...geReporter system_server                        D  Compat change id reported: 135754954; UID 10152; state: ENABLED
2024-03-18 16:14:38.134   503-533   Compatibil...geReporter system_server                        D  Compat change id reported: 143937733; UID 10152; state: ENABLED
2024-03-18 16:14:38.141   503-532   ActivityManager         system_server                        W  Slow operation: 107ms so far, now at startProcess: done starting proc!
2024-03-18 16:14:38.259   503-532   ActivityManager         system_server                        D  sync unfroze 27114 com.google.android.dialer for 3
2024-03-18 16:14:38.406   315-315   netd                    netd                                 I  bandwidthRemoveInterfaceQuota(eth0) <8.70ms>
2024-03-18 16:14:38.449 27114-27123 .android.dialer         com.google.android.dialer            W  Suspending all threads took: 139.226ms
2024-03-18 16:14:38.524   315-315   netd                    netd                                 I  bandwidthSetInterfaceQuota(eth0, 9223372036854775807) <4.54ms>
2024-03-18 16:14:38.532   315-315   netd                    netd                                 I  bandwidthRemoveInterfaceQuota(eth0) <2.43ms>
2024-03-18 16:14:38.534   315-315   netd                    netd                                 I  bandwidthSetInterfaceQuota(eth0, 9223372036854775807) <0.97ms>
2024-03-18 16:14:38.537   316-316   Zygote                  pid-316                              D  Forked child process 27358
2024-03-18 16:14:38.541   503-533   ActivityManager         system_server                        W  Slow operation: 423ms so far, now at startProcess: returned from zygote!
2024-03-18 16:14:38.542   503-533   ActivityManager         system_server                        W  Slow operation: 424ms so far, now at startProcess: done updating battery stats
2024-03-18 16:14:38.542   503-533   ActivityManager         system_server                        W  Slow operation: 424ms so far, now at startProcess: building log message
2024-03-18 16:14:38.542   503-533   ActivityManager         system_server                        I  Start proc 27358:com.google.android.deskclock/u0a152 for broadcast {com.google.android.deskclock/com.android.deskclock.AlarmInitReceiver}
2024-03-18 16:14:38.542   503-533   ActivityManager         system_server                        W  Slow operation: 424ms so far, now at startProcess: starting to update pids map
2024-03-18 16:14:38.542   503-533   ActivityManager         system_server                        W  Slow operation: 425ms so far, now at startProcess: done updating pids map
2024-03-18 16:14:38.627   503-710   NetworkStatsObservers   system_server                        D  Unregistering RequestInfo from pid/uid:503/1000(android) for DataUsageRequest [ requestId=14, networkTemplate=NetworkTemplate: matchRule=MOBILE, matchSubscriberIds=[310260...], matchWifiNetworkKeys=[], metered=YES, defaultNetwork=NO, thresholdInBytes=6205646 ] accessLevel:3
2024-03-18 16:14:38.629   503-630   NetworkStatsObservers   system_server                        D  Registering observer for RequestInfo from pid/uid:503/1000(android) for DataUsageRequest [ requestId=15, networkTemplate=NetworkTemplate: matchRule=MOBILE, matchSubscriberIds=[310260...], matchWifiNetworkKeys=[], metered=YES, defaultNetwork=NO, thresholdInBytes=6204203 ] accessLevel:3
2024-03-18 16:14:38.638   503-532   ActivityManager         system_server                        D  sync unfroze 15998 com.google.android.gms for 10
2024-03-18 16:14:38.641   503-532   ActivityManager         system_server                        D  sync unfroze 16045 com.google.process.gservices for 10
2024-03-18 16:14:38.656   315-315   netd                    netd                                 I  tetherGetStats() -> {[]} <0.71ms>
2024-03-18 16:14:38.709 27358-27358 droid.deskclock         pid-27358                            I  Using CollectorTypeCC GC.
2024-03-18 16:14:38.836 27358-27358 droid.deskclock         pid-27358                            E  Not starting debugger since process cannot load the jdwp agent.
2024-03-18 16:14:38.879   503-523   Looper                  system_server                        W  Slow dispatch took 107ms android.ui h=com.android.server.am.ActivityManagerService$UiHandler c=com.android.server.am.UidObserverController$$ExternalSyntheticLambda0@e791f4d m=0
2024-03-18 16:14:39.146 20712-20757 UsageSyncManager        com.google.android.apps.wellbeing    W  <DWB> Last (TimeDelta{wallTime=2024-03-18T10:11:38.689Z, elapsedSinceBoot=PT4H40M51.29S}, boot count 6) and current (TimeDelta{wallTime=2024-03-18T10:44:39.136Z, elapsedSinceBoot=PT4H44M59.275S}, boot count 6) deltas are different. Increase event shift by PT28M52.462S.
2024-03-18 16:14:39.186   503-2352  ActivityManager         system_server                        I  Background started FGS: Allowed [callingPackage: com.google.android.apps.wellbeing; callingUid: 10119; uidState: RCVR; uidBFSL: n/a; intent: Intent { cmp=com.google.android.apps.wellbeing/com.google.apps.tiktok.concurrent.InternalForegroundService (has extras) }; code:BACKGROUND_ACTIVITY_PERMISSION; tempAllowListReason:<2df89bb android.intent.action.TIME_SET/u-1,reasonCode:TIME_CHANGED,duration:20000,callingUid:1000>; targetSdkVersion:33; callerTargetSdkVersion:33; startForegroundCount:0; bindFromPackage:null: isBindService:false]
2024-03-18 16:14:39.274   829-1038  BtGatt.ScanManager      com.google.android.bluetooth         D  uid 10130 isForeground true scanMode -1
2024-03-18 16:14:39.278 26363-26441 Bugle                   com.google.android.apps.messaging    W  TextClassifierLibManagerImpl: Reclaiming memory at level: 40
2024-03-18 16:14:39.325 16012-16012 earchbox:search         com....android.googlequicksearchbox  W  Long monitor contention with owner binder:16012_6 (19724) at boolean android.os.MessageQueue.enqueueMessage(android.os.Message, long)(MessageQueue.java:600) waiters=0 in android.os.Message android.os.MessageQueue.next() for 151ms
2024-03-18 16:14:39.336   503-525   ColorDisplayService     system_server                        D  Setting saturation level: 100
2024-03-18 16:14:39.347 26363-26441 Bugle                   com.google.android.apps.messaging    W  TextClassifierLibManagerImpl: Reclaiming memory at level: 40
2024-03-18 16:14:39.354   503-1270  WallpaperManagerService system_server                        D  WPMS.saveSettingsLocked-0
2024-03-18 16:14:39.354   711-952   WallpaperService        com.android.systemui                 V  Setting wallpaper dimming: 0
2024-03-18 16:14:39.380   503-1270  WallpaperManagerService system_server                        V  WPMS.saveSettingsLocked-0 took to complete: 14ms
2024-03-18 16:14:39.382   711-711   Tonal                   com.android.systemui                 D  Tonal Palette - index: 4. Main color: ff343e65
                                                                                                    Colors: ff0b0c16, ff141627, ff1d2138, ff272d4c, ff343e65, ff41477e, ff4e5597, ff8184a4, ff898cc3, ff9e9ecd, ffb7b6d9, ffd9d7eb, ffefeef7
2024-03-18 16:14:39.382   711-711   Tonal                   com.android.systemui                 D  Gradients: 
                                                                                                        Normal GradientColors(ff343e65, ff343e65)
                                                                                                        Dark GradientColors(ff272d4c, ff272d4c)
                                                                                                        Extra dark: GradientColors(ff1d2138, ff1d2138)
2024-03-18 16:14:39.388   503-1270  WallpaperManagerService system_server                        D  WPMS.saveSettingsLocked-0
2024-03-18 16:14:39.398   503-1270  WallpaperManagerService system_server                        V  WPMS.saveSettingsLocked-0 took to complete: 10ms
2024-03-18 16:14:39.421   503-532   ActivityManager         system_server                        D  sync unfroze 16886 com.google.android.permissioncontroller for 3
2024-03-18 16:14:39.607   503-523   Looper                  system_server                        W  Slow dispatch took 157ms android.ui h=com.android.server.am.ActivityManagerService$UiHandler c=null m=68
2024-03-18 16:14:39.618   503-532   system_server           system_server                        W  Long monitor contention with owner binder:503_13 (1712) at int com.android.server.am.ActivityManagerService.bindServiceInstance(android.app.IApplicationThread, android.os.IBinder, android.content.Intent, java.lang.String, android.app.IServiceConnection, long, java.lang.String, boolean, int, java.lang.String, android.app.IApplicationThread, java.lang.String, int)(ActivityManagerService.java:13404) waiters=1 in boolean com.android.server.am.BroadcastQueueModernImpl.lambda$new$0(android.os.Message) for 128ms
2024-03-18 16:14:39.623   503-901   Compatibil...geReporter system_server                        D  Compat change id reported: 168419799; UID 10152; state: DISABLED
2024-03-18 16:14:39.626   503-901   Compatibil...geReporter system_server                        D  Compat change id reported: 273564678; UID 10152; state: DISABLED
2024-03-18 16:14:39.668 16886-16886 Permission...geReceiver com....android.permissioncontroller  D  Time changed by 1732 seconds
2024-03-18 16:14:39.685 16886-16886 Permission...geReceiver com....android.permissioncontroller  D  systemTimeSnapshot set to 1710758679668
2024-03-18 16:14:39.685 16886-16886 Permission...geReceiver com....android.permissioncontroller  D  realtimeSnapshot set to 17099807
2024-03-18 16:14:39.748 27358-27358 Compatibil...geReporter pid-27358                            D  Compat change id reported: 171979766; UID 10152; state: ENABLED
2024-03-18 16:14:39.761   503-532   ActivityManager         system_server                        I  com.google.android.devicelockcontroller is exempt from freezer
2024-03-18 16:14:39.761   503-532   Compatibil...geReporter system_server                        D  Compat change id reported: 135634846; UID 10172; state: DISABLED
2024-03-18 16:14:39.762   503-532   Compatibil...geReporter system_server                        D  Compat change id reported: 177438394; UID 10172; state: DISABLED
2024-03-18 16:14:39.762   503-532   Compatibil...geReporter system_server                        D  Compat change id reported: 135772972; UID 10172; state: DISABLED
2024-03-18 16:14:39.762   503-532   Compatibil...geReporter system_server                        D  Compat change id reported: 135754954; UID 10172; state: ENABLED
2024-03-18 16:14:39.762   503-533   Compatibil...geReporter system_server                        D  Compat change id reported: 143937733; UID 10172; state: ENABLED
2024-03-18 16:14:39.776 27358-27358 Compatibil...geReporter pid-27358                            D  Compat change id reported: 242716250; UID 10152; state: DISABLED
2024-03-18 16:14:39.839   316-316   Zygote                  pid-316                              D  Forked child process 27372
2024-03-18 16:14:39.846   503-533   ActivityManager         system_server                        W  Slow operation: 85ms so far, now at startProcess: returned from zygote!
2024-03-18 16:14:39.869   503-532   ActivityManager         system_server                        D  sync unfroze 16929 com.google.android.rkpdapp for 3
2024-03-18 16:14:39.872   503-533   ActivityManager         system_server                        W  Slow operation: 111ms so far, now at startProcess: done updating battery stats
2024-03-18 16:14:39.872   503-533   ActivityManager         system_server                        W  Slow operation: 111ms so far, now at startProcess: building log message
2024-03-18 16:14:39.872   503-533   ActivityManager         system_server                        I  Start proc 27372:com.google.android.devicelockcontroller/u0a172 for broadcast {com.google.android.devicelockcontroller/androidx.work.impl.background.systemalarm.RescheduleReceiver}
2024-03-18 16:14:39.872   503-533   ActivityManager         system_server                        W  Slow operation: 111ms so far, now at startProcess: starting to update pids map
2024-03-18 16:14:39.872   503-533   ActivityManager         system_server                        W  Slow operation: 111ms so far, now at startProcess: done updating pids map
2024-03-18 16:14:39.872   503-2344  Compatibil...geReporter system_server                        D  Compat change id reported: 170503758; UID 10152; state: ENABLED
2024-03-18 16:14:39.903   503-532   ActivityManager         system_server                        D  sync unfroze 16958 com.google.android.tts for 3
2024-03-18 16:14:39.915 27372-27372 elockcontroller         pid-27372                            I  Using CollectorTypeCC GC.
2024-03-18 16:14:39.928   503-532   ActivityManager         system_server                        D  sync unfroze 26820 com.google.android.youtube for 3
2024-03-18 16:14:39.966 27372-27372 elockcontroller         pid-27372                            E  Not starting debugger since process cannot load the jdwp agent.
2024-03-18 16:14:40.071 27358-27358 nativeloader            pid-27358                            D  Configuring clns-6 for other apk /system/framework/org.apache.http.legacy.jar. target_sdk_version=33, uses_libraries=ALL, library_path=/product/app/PrebuiltDeskClockGoogle/lib/arm64, permitted_path=/data:/mnt/expand:/data/user/0/com.google.android.deskclock
2024-03-18 16:14:40.109 27358-27358 ApplicationLoaders      pid-27358                            D  Returning zygote-cached class loader: /system_ext/framework/androidx.window.extensions.jar
2024-03-18 16:14:40.109 27358-27358 ApplicationLoaders      pid-27358                            D  Returning zygote-cached class loader: /system_ext/framework/androidx.window.sidecar.jar
2024-03-18 16:14:40.114  3897-27351 CCTFlatFileLogStore     com.google.android.gms.persistent    E  Failed to get boot count.
                                                                                                    java.util.concurrent.TimeoutException: Timed out waiting for Task
                                                                                                        at cfsz.o(:com.google.android.gms@231818044@23.18.18 (190400-535401451):6)
                                                                                                        at aakb.s(:com.google.android.gms@231818044@23.18.18 (190400-535401451):3)
                                                                                                        at aakq.run(:com.google.android.gms@231818044@23.18.18 (190400-535401451):3)
                                                                                                        at aced.c(:com.google.android.gms@231818044@23.18.18 (190400-535401451):6)
                                                                                                        at aced.run(:com.google.android.gms@231818044@23.18.18 (190400-535401451):7)
                                                                                                        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
                                                                                                        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644)
                                                                                                        at acjn.run(:com.google.android.gms@231818044@23.18.18 (190400-535401451):0)
                                                                                                        at java.lang.Thread.run(Thread.java:1012)
2024-03-18 16:14:40.135 20712-20757 UsageSyncManager        com.google.android.apps.wellbeing    W  <DWB> Deferring shifting events by PT9H20M45.25S
2024-03-18 16:14:40.246  3897-3897  BoundBrokerSvc          com.google.android.gms.persistent    D  onRebind: Intent { act=com.google.android.gms.clearcut.bootcount.service.START dat=chimera-action:/... cmp=com.google.android.gms/.chimera.PersistentBoundBrokerService }
2024-03-18 16:14:40.279 27358-27358 nativeloader            pid-27358                            D  InitLlndkLibrariesProduct: libEGL.so:libGLESv1_CM.so:libGLESv2.so:libGLESv3.so:libRS.so:libandroid_net.so:libbinder_ndk.so:libc.so:libcgrouprc.so:libclang_rt.asan-aarch64-android.so:libclang_rt.hwasan-aarch64-android.so:libcom.android.tethering.connectivity_native.so:libdl.so:libft2.so:liblog.so:libm.so:libmediandk.so:libnativewindow.so:libneuralnetworks.so:libselinux.so:libsync.so:libvndksupport.so:libvulkan.so
2024-03-18 16:14:40.279 27358-27358 nativeloader            pid-27358                            D  Configuring product-clns-7 for unbundled product apk /product/app/PrebuiltDeskClockGoogle/PrebuiltDeskClockGoogle.apk. target_sdk_version=33, uses_libraries=, library_path=/product/app/PrebuiltDeskClockGoogle/lib/arm64:/product/lib64:/system/product/lib64, permitted_path=/data:/mnt/expand:/data/user/0/com.google.android.deskclock:/product/lib64:/system/product/lib64
2024-03-18 16:14:40.279 27358-27358 nativeloader            pid-27358                            D  InitVndkspLibrariesProduct: android.hardware.common-V2-ndk.so:android.hardware.common.fmq-V1-ndk.so:android.hardware.graphics.allocator-V2-ndk.so:android.hardware.graphics.common-V4-ndk.so:android.hardware.graphics.common@1.0.so:android.hardware.graphics.common@1.1.so:android.hardware.graphics.common@1.2.so:android.hardware.graphics.composer3-V1-ndk.so:android.hardware.graphics.mapper@2.0.so:android.hardware.graphics.mapper@2.1.so:android.hardware.graphics.mapper@3.0.so:android.hardware.graphics.mapper@4.0.so:android.hardware.renderscript@1.0.so:android.hidl.memory.token@1.0.so:android.hidl.memory@1.0-impl.so:android.hidl.memory@1.0.so:android.hidl.safe_union@1.0.so:libRSCpuRef.so:libRSDriver.so:libRS_internal.so:libbase.so:libbcinfo.so:libblas.so:libc++.so:libcompiler_rt.so:libcutils.so:libdmabufheap.so:libgralloctypes.so:libhardware.so:libhidlbase.so:libhidlmemory.so:libion.so:libjsoncpp.so:liblzma.so:libprocessgroup.so:libunwindstack.so:libutils.so:libutilscallstack.so:libz.so
2024-03-18 16:14:40.307 16886-16892 ssioncontroller         com....android.permissioncontroller  W  Reducing the number of considered missed Gc histogram windows from 134 to 100
2024-03-18 16:14:40.391   969-1754  EGL_emulation           com...le.android.apps.nexuslauncher  D  app_time_stats: avg=247628.98ms min=247628.98ms max=247628.98ms count=1
2024-03-18 16:14:40.437   969-4437  OpenGLRenderer          com...le.android.apps.nexuslauncher  I  Davey! duration=833ms; Flags=0, FrameTimelineVsyncId=1002194, IntendedVsync=17099714888536, Vsync=17100014888524, InputEventId=0, HandleInputStart=17100025143321, AnimationStart=17100025144154, PerformTraversalsStart=17100203901738, DrawStart=17100422555780, FrameDeadline=17099731555202, FrameInterval=17100017534196, FrameStartTime=16666666, SyncQueued=17100423898655, SyncStart=17100424670155, IssueDrawCommandsStart=17100425173780, SwapBuffers=17100427571821, FrameCompleted=17100549500905, DequeueBufferDuration=6708, QueueBufferDuration=1844000, GpuCompleted=17100549500905, SwapBuffersCompleted=17100531013238, DisplayPresentTime=0, CommandSubmissionCompleted=17100427571821, 
2024-03-18 16:14:40.454   503-2344  ActivityManager         system_server                        W  Slow operation: 127ms so far, now at attachApplicationLocked: before bindApplication
2024-03-18 16:14:40.455   503-2344  Compatibil...geReporter system_server                        D  Compat change id reported: 168419799; UID 10172; state: DISABLED
2024-03-18 16:14:40.455   503-2344  Compatibil...geReporter system_server                        D  Compat change id reported: 273564678; UID 10172; state: DISABLED
2024-03-18 16:14:40.455   503-2344  ActivityManager         system_server                        W  Slow operation: 129ms so far, now at attachApplicationLocked: immediately before bindApplication
2024-03-18 16:14:40.459   503-2344  ActivityManager         system_server                        W  Slow operation: 132ms so far, now at attachApplicationLocked: immediately after bindApplication
2024-03-18 16:14:40.492   503-2344  ActivityManager         system_server                        W  Slow operation: 166ms so far, now at attachApplicationLocked: after updateLruProcessLocked
2024-03-18 16:14:40.499   503-532   ActivityManager         system_server                        W  ProcessRecord{6651b89 16843:com.google.android.gm/u0a145} is attached to a previous process
2024-03-18 16:14:40.500   503-523   DisplayManagerService   system_server                        D  Drop pending events for gone uid 10145
2024-03-18 16:14:40.503   503-532   ActivityManager         system_server                        W  Existing proc ProcessRecord{6651b89 16843:com.google.android.gm/u0a145} was killed 6069ms ago when adding ProcessRecord{55e987c 0:com.google.android.gm/u0a145}
2024-03-18 16:14:40.505   503-532   Compatibil...geReporter system_server                        D  Compat change id reported: 177438394; UID 10145; state: DISABLED
2024-03-18 16:14:40.505   503-532   Compatibil...geReporter system_server                        D  Compat change id reported: 135772972; UID 10145; state: DISABLED
2024-03-18 16:14:40.506   503-532   Compatibil...geReporter system_server                        D  Compat change id reported: 135754954; UID 10145; state: ENABLED
2024-03-18 16:14:40.584 27372-27372 Compatibil...geReporter com....android.devicelockcontroller  D  Compat change id reported: 171979766; UID 10172; state: ENABLED
2024-03-18 16:14:40.584 27372-27372 Compatibil...geReporter com....android.devicelockcontroller  D  Compat change id reported: 242716250; UID 10172; state: ENABLED
2024-03-18 16:14:40.695 27358-27358 GraphicsEnvironment     com.google.android.deskclock         V  Currently set values for:
2024-03-18 16:14:40.695 27358-27358 GraphicsEnvironment     com.google.android.deskclock         V    angle_gl_driver_selection_pkgs=[]
2024-03-18 16:14:40.696 27358-27358 GraphicsEnvironment     com.google.android.deskclock         V    angle_gl_driver_selection_values=[]
2024-03-18 16:14:40.700 27358-27358 GraphicsEnvironment     com.google.android.deskclock         V  ANGLE GameManagerService for com.google.android.deskclock: false
2024-03-18 16:14:40.701 27358-27358 GraphicsEnvironment     com.google.android.deskclock         V  com.google.android.deskclock is not listed in per-application setting
2024-03-18 16:14:40.702   503-2344  Compatibil...geReporter system_server                        D  Compat change id reported: 170503758; UID 10172; state: ENABLED
2024-03-18 16:14:40.716 27358-27358 GraphicsEnvironment     com.google.android.deskclock         V  Neither updatable production driver nor prerelease driver is supported.
2024-03-18 16:14:40.784   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 16:14:40.797 27372-27372 nativeloader            com....android.devicelockcontroller  D  Configuring clns-shared-6 for other apk /system/framework/org.apache.http.legacy.jar. target_sdk_version=34, uses_libraries=ALL, library_path=/apex/com.android.devicelock/priv-app/DeviceLockControllerGoogle@UE1A.230829.030/lib/arm64:/system/lib64:/system_ext/lib64, permitted_path=/data:/mnt/expand:/data/user/0/com.google.android.devicelockcontroller:/apex/com.android.devicelock/priv-app/DeviceLockControllerGoogle@UE1A.230829.030:/system/lib64:/system_ext/lib64
2024-03-18 16:14:40.946   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 16:14:41.048 27372-27372 nativeloader            com....android.devicelockcontroller  D  Configuring clns-shared-7 for other apk /apex/com.android.devicelock/priv-app/DeviceLockControllerGoogle@UE1A.230829.030/DeviceLockControllerGoogle.apk. target_sdk_version=34, uses_libraries=, library_path=/apex/com.android.devicelock/priv-app/DeviceLockControllerGoogle@UE1A.230829.030/lib/arm64:/system/lib64:/system_ext/lib64, permitted_path=/data:/mnt/expand:/data/user/0/com.google.android.devicelockcontroller:/apex/com.android.devicelock/priv-app/DeviceLockControllerGoogle@UE1A.230829.030:/system/lib64:/system_ext/lib64
2024-03-18 16:14:41.061 27372-27372 nativeloader            com....android.devicelockcontroller  D  InitApexLibraries:
                                                                                                      com_android_adservices: libhpke_jni.so:libtflite_support_classifiers_native.so
                                                                                                      com_android_appsearch: libicing.so
                                                                                                      com_android_art: libartservice.so
                                                                                                      com_android_btservices: libbluetooth_jni.so
                                                                                                      com_android_conscrypt: libjavacrypto.so
                                                                                                      com_android_extservices: libtflite_support_classifiers_native.so
                                                                                                      com_android_os_statsd: libstats_jni.so
                                                                                                      com_android_tethering: libandroid_net_connectivity_com_android_net_module_util_jni.so:libcronet.114.0.5735.84.so:libframework-connectivity-jni.so:libframework-connectivity-tiramisu-jni.so:libservice-connectivity.so
                                                                                                      com_android_uwb: libuwb_uci_jni_rust.so
                                                                                                      com_android_virt: libvirtualizationservice_jni.so:libvirtualmachine_jni.so
2024-03-18 16:14:41.157 15998-27392 SystemUpdate            com.google.android.gms               I  [Installation,ReceiverIntentOperation] Received intent: Intent { act=android.intent.action.TIME_SET flg=0x25200010 pkg=com.google.android.gms cmp=com.google.android.gms/.chimera.GmsIntentOperationService$PersistentTrustedReceiver }.
2024-03-18 16:14:41.211 15998-27391 AlarmManager            com.google.android.gms               I  setExactAndAllowWhileIdle [name: RemindersNSREFRESH_TIME_REMINDERS_ALARM type: 0 triggerAtMillis: 1710786600000]
2024-03-18 16:14:41.242  3897-4032  FontLog                 com.google.android.gms.persistent    I  Received query Google Sans, URI content://com.google.android.gms.fonts [CONTEXT service_id=132 ]
2024-03-18 16:14:41.310   316-316   Zygote                  pid-316                              I  Process 16843 exited due to signal 9 (Killed)
2024-03-18 16:14:41.313   503-534   libprocessgroup         system_server                        I  Successfully killed process cgroup uid 10145 pid 16843 in 0ms
2024-03-18 16:14:41.348  3897-4032  FontLog                 com.google.android.gms.persistent    I  Query [Google Sans] resolved to {Google Sans, wdth 100.0, wght 400, ital 0.0, bestEffort false} [CONTEXT service_id=132 ]
2024-03-18 16:14:41.361 15998-27387 SystemUpdate            com.google.android.gms               I  [Execution,InstallationEventIntentOperation] Handling event of type 6.
2024-03-18 16:14:41.363   503-532   system_server           system_server                        W  Long monitor contention with owner binder:503_1E (2351) at int com.android.server.am.ActivityManagerService.bindServiceInstance(android.app.IApplicationThread, android.os.IBinder, android.content.Intent, java.lang.String, android.app.IServiceConnection, long, java.lang.String, boolean, int, java.lang.String, android.app.IApplicationThread, java.lang.String, int)(ActivityManagerService.java:13404) waiters=0 in boolean com.android.server.am.BroadcastQueueModernImpl.lambda$new$0(android.os.Message) for 106ms
2024-03-18 16:14:41.367   503-901   Compatibil...geReporter system_server                        D  Compat change id reported: 161145287; UID 10152; state: DISABLED
2024-03-18 16:14:41.379 27372-27372 GraphicsEnvironment     com....android.devicelockcontroller  V  Currently set values for:
2024-03-18 16:14:41.379 27372-27372 GraphicsEnvironment     com....android.devicelockcontroller  V    angle_gl_driver_selection_pkgs=[]
2024-03-18 16:14:41.379 27372-27372 GraphicsEnvironment     com....android.devicelockcontroller  V    angle_gl_driver_selection_values=[]
2024-03-18 16:14:41.387   503-533   ActivityManager         system_server                        W  Slow operation: 884ms so far, now at startProcess: asking zygote to start proc
2024-03-18 16:14:41.387   503-533   Compatibil...geReporter system_server                        D  Compat change id reported: 143937733; UID 10145; state: ENABLED
2024-03-18 16:14:41.401 27372-27372 GraphicsEnvironment     com....android.devicelockcontroller  V  ANGLE GameManagerService for com.google.android.devicelockcontroller: false
2024-03-18 16:14:41.403 27372-27372 GraphicsEnvironment     com....android.devicelockcontroller  V  com.google.android.devicelockcontroller is not listed in per-application setting
2024-03-18 16:14:41.403 27372-27372 GraphicsEnvironment     com....android.devicelockcontroller  V  Neither updatable production driver nor prerelease driver is supported.
2024-03-18 16:14:41.423 27372-27372 DeviceLock...pplication com....android.devicelockcontroller  I  onCreate
2024-03-18 16:14:41.427   316-316   Zygote                  pid-316                              D  Forked child process 27395
2024-03-18 16:14:41.429   503-533   ActivityManager         system_server                        W  Slow operation: 926ms so far, now at startProcess: returned from zygote!
2024-03-18 16:14:41.443   503-533   ActivityManager         system_server                        W  Slow operation: 940ms so far, now at startProcess: done updating battery stats
2024-03-18 16:14:41.443   503-533   ActivityManager         system_server                        W  Slow operation: 940ms so far, now at startProcess: building log message
2024-03-18 16:14:41.443   503-533   ActivityManager         system_server                        I  Start proc 27395:com.google.android.gm/u0a145 for broadcast {com.google.android.gm/androidx.work.impl.background.systemalarm.RescheduleReceiver}
2024-03-18 16:14:41.443   503-533   ActivityManager         system_server                        W  Slow operation: 940ms so far, now at startProcess: starting to update pids map
2024-03-18 16:14:41.443   503-533   ActivityManager         system_server                        W  Slow operation: 940ms so far, now at startProcess: done updating pids map
2024-03-18 16:14:41.456 27372-27372 DeviceStat...rollerImpl com....android.devicelockcontroller  I  Starting state is 0
2024-03-18 16:14:41.459 27358-27358 PrimesApiImpl           com.google.android.deskclock         D  Primes instant initialization
2024-03-18 16:14:41.473 27372-27372 UserRestri...icyHandler com....android.devicelockcontroller  I  Build type DEBUG = true
2024-03-18 16:14:41.479 27372-27372 DevicePoli...rollerImpl com....android.devicelockcontroller  D  onStateChanged (0)
2024-03-18 16:14:41.480 27372-27372 UserRestri...icyHandler com....android.devicelockcontroller  V  Setting restrictions for 0
2024-03-18 16:14:41.486  3897-4032  FontLog                 com.google.android.gms.persistent    I  Font PFD returned from cache for {Google Sans, wdth 100.0, wght 400, ital 0.0, bestEffort false} [CONTEXT service_id=132 ]
2024-03-18 16:14:41.486  3897-4032  FontLog                 com.google.android.gms.persistent    I  Fetch {Google Sans, wdth 100.0, wght 400, ital 0.0, bestEffort false} end status Status{statusCode=SUCCESS, resolution=null} [CONTEXT service_id=132 ]
2024-03-18 16:14:41.501 15998-27387 SystemUpdate            com.google.android.gms               I  [Execution,InstallationIntentOperation] Received intent: Intent { act=com.google.android.gms.update.INSTALL_UPDATE cat=[targeted_intent_op_prefix:.update.execution.InstallationIntentOperation] cmp=com.google.android.gms/.chimera.GmsIntentOperationService }.
2024-03-18 16:14:41.505 27372-27372 Compatibil...geReporter com....android.devicelockcontroller  D  Compat change id reported: 183155436; UID 10172; state: ENABLED
2024-03-18 16:14:41.529 27395-27395 ogle.android.gm         pid-27395                            I  Using CollectorTypeCC GC.
2024-03-18 16:14:41.530 15998-27387 SystemUpdate            com.google.android.gms               I  [Execution,ExecutionManager] Action finished-execution executed for 0.00 seconds.
2024-03-18 16:14:41.578   503-565   ActivityManager         system_server                        I  Flag disabled. Ignoring finishAttachApplication from uid: 10172. pid: 27372
2024-03-18 16:14:41.595 27372-27372 WM-RescheduleReceiver   com....android.devicelockcontroller  D  Received intent Intent { act=android.intent.action.TIME_SET flg=0x25200010 cmp=com.google.android.devicelockcontroller/androidx.work.impl.background.systemalarm.RescheduleReceiver }
2024-03-18 16:14:41.634   390-404   adbd                    adbd                                 I  jdwp connection from 27395
2024-03-18 16:14:41.709 27372-27372 WM-PackageManagerHelper com....android.devicelockcontroller  D  androidx.work.impl.background.systemjob.SystemJobService enabled
2024-03-18 16:14:41.709 27372-27372 WM-Schedulers           com....android.devicelockcontroller  D  Created SystemJobScheduler and enabled SystemJobService
2024-03-18 16:14:41.720 27372-27372 SetupParametersService  com....android.devicelockcontroller  D  onCreate
2024-03-18 16:14:41.765 27358-27358 Compatibil...geReporter com.google.android.deskclock         D  Compat change id reported: 183155436; UID 10152; state: ENABLED
2024-03-18 16:14:41.781   503-901   ActivityManager         system_server                        I  Flag disabled. Ignoring finishAttachApplication from uid: 10152. pid: 27358
2024-03-18 16:14:41.781 27358-27358 AlarmClock              com.google.android.deskclock         I  AlarmInitReceiver android.intent.action.TIME_SET
2024-03-18 16:14:41.824   503-2352  Compatibil...geReporter system_server                        D  Compat change id reported: 261072174; UID 10172; state: ENABLED
2024-03-18 16:14:41.829   503-565   system_server           system_server                        W  Long monitor contention with owner binder:503_1F (2352) at int com.android.server.am.ActivityManagerService.bindServiceInstance(android.app.IApplicationThread, android.os.IBinder, android.content.Intent, java.lang.String, android.app.IServiceConnection, long, java.lang.String, boolean, int, java.lang.String, android.app.IApplicationThread, java.lang.String, int)(ActivityManagerService.java:13404) waiters=0 in android.content.Intent com.android.server.am.ActivityManagerService.registerReceiverWithFeature(android.app.IApplicationThread, java.lang.String, java.lang.String, java.lang.String, android.content.IIntentReceiver, android.content.IntentFilter, java.lang.String, int, int) for 195ms
2024-03-18 16:14:41.831   503-614   system_server           system_server                        W  Long monitor contention with owner binder:503_1F (2352) at int com.android.server.am.ActivityManagerService.bindServiceInstance(android.app.IApplicationThread, android.os.IBinder, android.content.Intent, java.lang.String, android.app.IServiceConnection, long, java.lang.String, boolean, int, java.lang.String, android.app.IApplicationThread, java.lang.String, int)(ActivityManagerService.java:13404) waiters=2 in void com.android.server.am.ActivityManagerService.serviceDoneExecuting(android.os.IBinder, int, int, int) for 110ms
2024-03-18 16:14:41.839   503-2344  system_server           system_server                        W  Long monitor contention with owner binder:503_1F (2352) at int com.android.server.am.ActivityManagerService.bindServiceInstance(android.app.IApplicationThread, android.os.IBinder, android.content.Intent, java.lang.String, android.app.IServiceConnection, long, java.lang.String, boolean, int, java.lang.String, android.app.IApplicationThread, java.lang.String, int)(ActivityManagerService.java:13404) waiters=3 in void com.android.server.am.ActivityManagerService.publishService(android.os.IBinder, android.content.Intent, android.os.IBinder) for 117ms
2024-03-18 16:14:41.852 27358-27435 droid.deskclock         com.google.android.deskclock         W  Accessing hidden field Ljava/util/Collections$SynchronizedCollection;->mutex:Ljava/lang/Object; (max-target-o, reflection, denied)
2024-03-18 16:14:41.853 27358-27435 droid.deskclock         com.google.android.deskclock         W  Accessing hidden method Ljava/util/Collections$SynchronizedSet;-><init>(Ljava/util/Set;Ljava/lang/Object;)V (max-target-o, reflection, denied)
2024-03-18 16:14:41.853 27358-27435 droid.deskclock         com.google.android.deskclock         W  Accessing hidden method Ljava/util/Collections$SynchronizedCollection;-><init>(Ljava/util/Collection;Ljava/lang/Object;)V (max-target-o, reflection, denied)
2024-03-18 16:14:41.861 27372-27397 DlcClient               com....android.devicelockcontroller  I  Binding com.google.android.devicelockcontroller/com.android.devicelockcontroller.storage.SetupParametersService
2024-03-18 16:14:41.863 27372-27398 elockcontroller         com....android.devicelockcontroller  W  Long monitor contention with owner pool-2-thread-1 (27397) at void java.lang.Object.wait(long, int)(Object.java:-2) waiters=0 in java.lang.Object com.android.devicelockcontroller.storage.DlcClient.lambda$call$0(java.util.concurrent.Callable) for 311ms
2024-03-18 16:14:41.864 27372-27400 elockcontroller         com....android.devicelockcontroller  W  Long monitor contention with owner pool-2-thread-1 (27397) at void java.lang.Object.wait(long, int)(Object.java:-2) waiters=1 in java.lang.Object com.android.devicelockcontroller.storage.DlcClient.lambda$call$0(java.util.concurrent.Callable) for 312ms
2024-03-18 16:14:41.864 27372-27399 elockcontroller         com....android.devicelockcontroller  W  Long monitor contention with owner pool-2-thread-1 (27397) at void java.lang.Object.wait(long, int)(Object.java:-2) waiters=2 in java.lang.Object com.android.devicelockcontroller.storage.DlcClient.lambda$call$0(java.util.concurrent.Callable) for 312ms
2024-03-18 16:14:41.894 27372-27403 PackagePolicyHandler    com....android.devicelockcontroller  D  Kiosk package is not set for state: 0
2024-03-18 16:14:41.901 27372-27372 AggregateFuture         com....android.devicelockcontroller  E  Got more than one input Future failure. Logging failures after the first
                                                                                                    java.lang.IllegalStateException: Setup parameters does not exist!
                                                                                                        at com.android.devicelockcontroller.policy.UserRestrictionsPolicyHandler.lambda$retrieveLockModeRestrictions$3(UserRestrictionsPolicyHandler.java:138)
                                                                                                        at com.android.devicelockcontroller.policy.UserRestrictionsPolicyHandler.$r8$lambda$K4dazaAj4roA8BauvRaHZASMq6E(UserRestrictionsPolicyHandler.java:0)
                                                                                                        at com.android.devicelockcontroller.policy.UserRestrictionsPolicyHandler$$ExternalSyntheticLambda4.call(R8$$SyntheticClass:0)
                                                                                                        at com.google.common.util.concurrent.CombinedFuture$CallableInterruptibleTask.runInterruptibly(CombinedFuture.java:196)
                                                                                                        at com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:74)
                                                                                                        at android.os.Handler.handleCallback(Handler.java:958)
                                                                                                        at android.os.Handler.dispatchMessage(Handler.java:99)
                                                                                                        at android.os.Looper.loopOnce(Looper.java:205)
                                                                                                        at android.os.Looper.loop(Looper.java:294)
                                                                                                        at android.app.ActivityThread.main(ActivityThread.java:8177)
                                                                                                        at java.lang.reflect.Method.invoke(Native Method)
                                                                                                        at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:552)
                                                                                                        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:971)
2024-03-18 16:14:41.902 27372-27372 DeviceLock...pplication com....android.devicelockcontroller  I  Policies enforced
2024-03-18 16:14:41.925 27358-27358 Compatibil...geReporter com.google.android.deskclock         D  Compat change id reported: 160794467; UID 10152; state: ENABLED
2024-03-18 16:14:41.959   503-2352  Compatibil...geReporter system_server                        D  Compat change id reported: 168419799; UID 10145; state: DISABLED
2024-03-18 16:14:41.960   503-2352  Compatibil...geReporter system_server                        D  Compat change id reported: 273564678; UID 10145; state: DISABLED
2024-03-18 16:14:42.021   503-565   DevicePolicyEngine      system_server                        I  Couldn't find any receivers that handle ACTION_DEVICE_POLICY_SET_RESULT in package com.google.android.devicelockcontroller
2024-03-18 16:14:42.022   503-565   DevicePolicyEngine      system_server                        D  Writing device policies to file.
2024-03-18 16:14:42.022   503-565   DevicePolicyEngine      system_server                        D  Writing to /data/system/device_policy_state.xml
2024-03-18 16:14:42.054 27372-27426 Compatibil...geReporter com....android.devicelockcontroller  D  Compat change id reported: 160794467; UID 10172; state: ENABLED
2024-03-18 16:14:42.065   503-2352  ActivityManager         system_server                        W  Slow operation: 92ms so far, now at finishAttachApplicationInner: after dispatching broadcasts
2024-03-18 16:14:42.069   503-503   Looper                  system_server                        W  Slow dispatch took 100ms main h=android.app.ActivityThread$H c=null m=131
2024-03-18 16:14:42.085 27395-27395 Compatibil...geReporter pid-27395                            D  Compat change id reported: 171979766; UID 10145; state: ENABLED
2024-03-18 16:14:42.085 27395-27395 Compatibil...geReporter pid-27395                            D  Compat change id reported: 242716250; UID 10145; state: DISABLED
2024-03-18 16:14:42.089   503-614   Compatibil...geReporter system_server                        D  Compat change id reported: 170503758; UID 10145; state: ENABLED
2024-03-18 16:14:42.105 26820-26876 YouTube                 com.google.android.youtube           E  Scheduled config refresh failed.
                                                                                                    xfw: dxk: java.lang.IllegalStateException: DefaultAccountIdResolver could not resolve pseudonymous, pseudonymous
                                                                                                        at xoi.apply(PG:42)
                                                                                                        at utz.u(PG:5)
                                                                                                        at utz.b(PG:2)
                                                                                                        at xfp.d(PG:4)
                                                                                                        at aena.p(PG:1)
                                                                                                        at xiw.a(PG:5)
                                                                                                        at xix.a(PG:18)
                                                                                                        at adpr.ab(PG:4)
                                                                                                        at tdm.call(PG:75)
                                                                                                        at ahgj.call(PG:7)
                                                                                                        at ahiq.a(PG:1)
                                                                                                        at ahhw.run(PG:4)
                                                                                                        at ahir.run(PG:1)
                                                                                                        at pfy.run(PG:24)
                                                                                                        at pao.run(PG:14)
                                                                                                        at pao.run(PG:44)
                                                                                                        at java.lang.Thread.run(Thread.java:1012)
                                                                                                        at pgd.run(PG:5)
                                                                                                    Caused by: dxk: java.lang.IllegalStateException: DefaultAccountIdResolver could not resolve pseudonymous, pseudonymous
                                                                                                        at van.a(PG:1)
                                                                                                        at van.d(PG:17)
                                                                                                        at uta.run(PG:2)
                                                                                                        at ageq.run(PG:3)
                                                                                                        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
                                                                                                        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644)
                                                                                                        at ugr.run(PG:89)
                                                                                                        at java.lang.Thread.run(Thread.java:1012)
                                                                                                    Caused by: java.lang.IllegalStateException: DefaultAccountIdResolver could not resolve pseudonymous, pseudonymous
                                                                                                        at tdd.a(PG:18)
                                                                                                        at wbj.v(PG:2)
                                                                                                        at xem.N(PG:26)
                                                                                                        at xem.L(PG:2)
                                                                                                        at xem.rZ(PG:1)
                                                                                                        at van.b(PG:17)
                                                                                                        at van.d(PG:16)
                                                                                                        at uta.run(PG:2) 
                                                                                                        at ageq.run(PG:3) 
                                                                                                        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) 
                                                                                                        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644) 
                                                                                                        at ugr.run(PG:89) 
                                                                                                        at java.lang.Thread.run(Thread.java:1012) 
                                                                                                    Caused by: java.util.concurrent.ExecutionException: afuk: account of type pseudonymous is not enabled
                                                                                                        at ahfv.n(PG:4)
                                                                                                        at ahfv.get(PG:17)
                                                                                                        at ahfq.get(PG:2)
                                                                                                        at tdd.a(PG:14)
                                                                                                        at wbj.v(PG:2) 
                                                                                                        at xem.N(PG:26) 
                                                                                                        at xem.L(PG:2) 
                                                                                                        at xem.rZ(PG:1) 
                                                                                                        at van.b(PG:17) 
                                                                                                        at van.d(PG:16) 
                                                                                                        at uta.run(PG:2) 
                                                                                                        at ageq.run(PG:3) 
                                                                                                        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) 
                                                                                                        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644) 
                                                                                                        at ugr.run(PG:89) 
                                                                                                        at java.lang.Thread.run(Thread.java:1012) 
                                                                                                    Caused by: afuk: account of type pseudonymous is not enabled
                                                                                                        at zup.apply(PG:10)
                                                                                                        at aget.apply(PG:3)
                                                                                                        at ahfy.c(PG:2)
                                                                                                        at ahfz.run(PG:9)
                                                                                                        at ahgu.execute(PG:1)
                                                                                                        at ahfv.f(PG:1)
                                                                                                        at ahfv.i(PG:12)
                                                                                                        at ahfv.setFuture(PG:5)
                                                                                                        at ahhn.run(PG:1)
                                                                                                        at ahgu.execute(PG:1)
                                                                                                        at ahfv.f(PG:1)
                                                                                                        at ahfv.i(PG:12)
                                                                                                        at ahfv.setFuture(PG:5)
                                                                                                        at ahfx.d(PG:2)
                                                                                                        at ahfz.run(PG:13)
                                                                                                        at ahgu.execute(PG:1)
                                                                                                        at ahfv.f(PG:1)
                                                                                                        at ahfv.i(PG:12)
                                                                                                        at ahfv.setFuture(PG:5)
                                                                                                        at afwc.setFuture(PG:1)
                                                                                                        at afwb.run(PG:4)
                                                                                                        at ahgu.execute(PG:1)
                                                                                                        at ahfv.f(PG:1)
                                                                                                        at ahfv.i(PG:12)
                                                                                                        at ahfv.set(PG:2)
                                                                                                        at ahgr.c(PG:1)
                                                                                                        at ahgs.e(PG:2)
                                                                                                        at ahhw.run(PG:8)
                                                                                                        at ahgu.execute(PG:1)
                                                                                                        at ahgs.f(PG:1)
                                                                                                        at ahgt.m(PG:1)
                                                                                                        at ahgc.f(PG:6)
                                                                                                        at ahga.run(PG:4)
                                                                                                        at ahgu.execute(PG:1)
                                                                                                        at ahfv.f(PG:1)
                                                                                                        at ahfv.i(PG:12)
                                                                                                        at ahfv.setFuture(PG:5)
                                                                                                        at ahfx.d(PG:2)
                                                                                                        at ahfz.run(PG:13)
                                                                                                        at ahgu.execute(PG:1)
                                                                                                        at ahfv.f(PG:1)
                                                                                                        at ahfv.i(PG:12)
                                                                                                        at ahfv.setFuture(PG:5)
                                                                                                        at ahhn.run(PG:1)
                                                                                                        at ahgu.execute(PG:1)
                                                                                                        at ahfv.f(PG:1)
                                                                                                        at ahfv.i(PG:12)
                                                                                                        at ahfv.setFuture(PG:5)
                                                                                                        at ahfx.d(PG:2)
                                                                                                        at ahfz.run(PG:13)
                                                                                                        at ahgu.execute(PG:1)
                                                                                                        at ahfv.f(PG:1)
                                                                                                        at ahfv.i(PG:12)
                                                                                                        at ahfv.setFuture(PG:5)
                                                                                                        at ahfx.d(PG:2)
                                                                                                        at ahfz.run(PG:13)
                                                                                                        at ahgu.execute(PG:1)
                                                                                                        at ahfv.f(PG:1)
                                                                                                        at ahfv.i(PG:12)
                                                                                                        at ahfv.setFuture(PG:5)
                                                                                                        at ahfx.d(PG:2)
                                                                                                        at ahfz.run(PG:13)
                                                                                                        at ahgu.execute(PG:1)
                                                                                                        at ahfv.f(PG:1)
                                                                                                        at ahfv.i(PG:12)
                                                                                                        at ahfv.setFuture(PG:5)
                                                                                                        at ahhn.run(PG:1)
                                                                                                        at ahgu.execute(PG:1)
                                                                                                        at ahfv.f(PG:1)
                                                                                                        at ahfv.i(PG:12)
                                                                                                        at ahfv.setFuture(PG:5)
                                                                                                        at ahhn.run(PG:1)
                                                                                                        at ahgu.execute(PG:1)
                                                                                                        at ahfv.f(PG:1)
                                                                                                        at ahfv.i(PG:12)
                                                                                                        at ahfv.setFuture(PG:5)
                                                                                                        at ahip.e(PG:2)
                                                                                                        at ahhw.run(PG:8)
                                                                                                        at ahir.run(PG:1)
                                                                                                        at ahha.run(PG:3)
                                                                                                        at ahij.run(PG:1)
                                                                                                        at afwf.run(PG:28)
                                                                                                        at pfu.run(PG:1)
                                                                                                        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
                                                                                                        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644)
                                                                                                        at ohd.run(PG:3)
                                                                                                        at java.lang.Thread.run(Thread.java:1012)
                                                                                                        at pgd.run(PG:5)
2024-03-18 16:14:42.142   503-614   JobScheduler.JobStatus  system_server                        E  App com.google.android.youtube became active but still in NEVER bucket
2024-03-18 16:14:42.207 27395-27395 nativeloader            pid-27395                            D  Configuring clns-6 for other apk /system/framework/org.apache.http.legacy.jar. target_sdk_version=33, uses_libraries=ALL, library_path=/product/app/PrebuiltGmail/lib/arm64:/product/app/PrebuiltGmail/PrebuiltGmail.apk!/lib/arm64-v8a, permitted_path=/data:/mnt/expand:/data/user/0/com.google.android.gm
2024-03-18 16:14:42.219 27395-27395 ApplicationLoaders      pid-27395                            D  Returning zygote-cached class loader: /system_ext/framework/androidx.window.extensions.jar
2024-03-18 16:14:42.222 27395-27395 ApplicationLoaders      pid-27395                            D  Returning zygote-cached class loader: /system_ext/framework/androidx.window.sidecar.jar
2024-03-18 16:14:42.308   503-614   Compatibil...geReporter system_server                        D  Compat change id reported: 261072174; UID 10152; state: DISABLED
2024-03-18 16:14:42.324  3897-4032  FontLog                 com.google.android.gms.persistent    I  Pulling font file for id = 139, cache size = 4 [CONTEXT service_id=132 ]
2024-03-18 16:14:42.343   503-525   ColorDisplayService     system_server                        D  GlobalSaturationTintController Animation cancelled: false to matrix: 
                                                                                                           1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 min matrix coefficients: 
                                                                                                           1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 max matrix coefficients: 
                                                                                                           1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000
2024-03-18 16:14:42.410  3897-3897  BoundBrokerSvc          com.google.android.gms.persistent    D  onBind: Intent { act=com.google.android.contextmanager.service.ContextManagerService.START pkg=com.google.android.gms }
2024-03-18 16:14:42.410  3897-3897  BoundBrokerSvc          com.google.android.gms.persistent    D  Loading bound service for intent: Intent { act=com.google.android.contextmanager.service.ContextManagerService.START pkg=com.google.android.gms }
2024-03-18 16:14:42.600 27358-27369 droid.deskclock         com.google.android.deskclock         W  Long monitor contention with owner fonts-androidx (27390) at boolean android.os.MessageQueue.enqueueMessage(android.os.Message, long)(MessageQueue.java:600) waiters=1 in boolean android.os.MessageQueue.enqueueMessage(android.os.Message, long) for 115ms
2024-03-18 16:14:42.602 27358-27436 PhenotypeContext        com.google.android.deskclock         D  Application doesn't implement PhenotypeApplication interface, falling back to globally set context. See go/phenotype-flag#process-stable-init for more info.
2024-03-18 16:14:42.604  3897-4032  FontLog                 com.google.android.gms.persistent    I  Received query Google Sans Text, URI content://com.google.android.gms.fonts [CONTEXT service_id=132 ]
2024-03-18 16:14:42.604  3897-4032  FontLog                 com.google.android.gms.persistent    I  Query [Google Sans Text] resolved to {Google Sans Text, wdth 100.0, wght 400, ital 0.0, bestEffort false} [CONTEXT service_id=132 ]
2024-03-18 16:14:42.617   711-711   TileServices            com.android.systemui                 D  Couldn't find tile for ComponentInfo{com.google.android.apps.wellbeing/com.google.android.apps.wellbeing.screen.ui.GrayscaleTileService}(0)
2024-03-18 16:14:42.623  3897-4032  FontLog                 com.google.android.gms.persistent    I  Font PFD returned from cache for {Google Sans Text, wdth 100.0, wght 400, ital 0.0, bestEffort false} [CONTEXT service_id=132 ]
2024-03-18 16:14:42.623  3897-4032  FontLog                 com.google.android.gms.persistent    I  Fetch {Google Sans Text, wdth 100.0, wght 400, ital 0.0, bestEffort false} end status Status{statusCode=SUCCESS, resolution=null} [CONTEXT service_id=132 ]
2024-03-18 16:14:42.629  3897-4050  FontLog                 com.google.android.gms.persistent    I  Pulling font file for id = 140, cache size = 4 [CONTEXT service_id=132 ]
2024-03-18 16:14:42.719  3897-4032  FontLog                 com.google.android.gms.persistent    I  Received query Google Sans:500, URI content://com.google.android.gms.fonts [CONTEXT service_id=132 ]
2024-03-18 16:14:42.719  3897-4032  FontLog                 com.google.android.gms.persistent    I  Query [Google Sans:500] resolved to {Google Sans, wdth 100.0, wght 500, ital 0.0, bestEffort false} [CONTEXT service_id=132 ]
2024-03-18 16:14:42.742  3897-4032  FontLog                 com.google.android.gms.persistent    I  Font PFD returned from cache for {Google Sans, wdth 100.0, wght 500, ital 0.0, bestEffort false} [CONTEXT service_id=132 ]
2024-03-18 16:14:42.742  3897-4032  FontLog                 com.google.android.gms.persistent    I  Fetch {Google Sans, wdth 100.0, wght 500, ital 0.0, bestEffort false} end status Status{statusCode=SUCCESS, resolution=null} [CONTEXT service_id=132 ]
2024-03-18 16:14:42.750  3897-4032  FontLog                 com.google.android.gms.persistent    I  Pulling font file for id = 141, cache size = 4 [CONTEXT service_id=132 ]
2024-03-18 16:14:42.782 27358-27358 AlarmClock              com.google.android.deskclock         D  Timing: [Bedtime] [Fetch Wind Down Data]: 963 ms
2024-03-18 16:14:42.785 27395-27395 nativeloader            com.google.android.gm                D  InitLlndkLibrariesProduct: libEGL.so:libGLESv1_CM.so:libGLESv2.so:libGLESv3.so:libRS.so:libandroid_net.so:libbinder_ndk.so:libc.so:libcgrouprc.so:libclang_rt.asan-aarch64-android.so:libclang_rt.hwasan-aarch64-android.so:libcom.android.tethering.connectivity_native.so:libdl.so:libft2.so:liblog.so:libm.so:libmediandk.so:libnativewindow.so:libneuralnetworks.so:libselinux.so:libsync.so:libvndksupport.so:libvulkan.so
2024-03-18 16:14:42.785 27395-27395 nativeloader            com.google.android.gm                D  Configuring product-clns-7 for unbundled product apk /product/app/PrebuiltGmail/PrebuiltGmail.apk. target_sdk_version=33, uses_libraries=, library_path=/product/app/PrebuiltGmail/lib/arm64:/product/app/PrebuiltGmail/PrebuiltGmail.apk!/lib/arm64-v8a:/product/lib64:/system/product/lib64, permitted_path=/data:/mnt/expand:/data/user/0/com.google.android.gm:/product/lib64:/system/product/lib64
2024-03-18 16:14:42.786 27395-27395 nativeloader            com.google.android.gm                D  InitVndkspLibrariesProduct: android.hardware.common-V2-ndk.so:android.hardware.common.fmq-V1-ndk.so:android.hardware.graphics.allocator-V2-ndk.so:android.hardware.graphics.common-V4-ndk.so:android.hardware.graphics.common@1.0.so:android.hardware.graphics.common@1.1.so:android.hardware.graphics.common@1.2.so:android.hardware.graphics.composer3-V1-ndk.so:android.hardware.graphics.mapper@2.0.so:android.hardware.graphics.mapper@2.1.so:android.hardware.graphics.mapper@3.0.so:android.hardware.graphics.mapper@4.0.so:android.hardware.renderscript@1.0.so:android.hidl.memory.token@1.0.so:android.hidl.memory@1.0-impl.so:android.hidl.memory@1.0.so:android.hidl.safe_union@1.0.so:libRSCpuRef.so:libRSDriver.so:libRS_internal.so:libbase.so:libbcinfo.so:libblas.so:libc++.so:libcompiler_rt.so:libcutils.so:libdmabufheap.so:libgralloctypes.so:libhardware.so:libhidlbase.so:libhidlmemory.so:libion.so:libjsoncpp.so:liblzma.so:libprocessgroup.so:libunwindstack.so:libutils.so:libutilscallstack.so:libz.so
2024-03-18 16:14:42.850 27358-27436 AlarmClock              com.google.android.deskclock         I  Connected Dock: null
2024-03-18 16:14:42.872  3897-3897  BoundBrokerSvc          com.google.android.gms.persistent    D  onBind: Intent { act=com.google.android.gms.phenotype.service.START pkg=com.google.android.gms }
2024-03-18 16:14:42.875  3897-3897  BoundBrokerSvc          com.google.android.gms.persistent    D  Loading bound service for intent: Intent { act=com.google.android.gms.phenotype.service.START pkg=com.google.android.gms }
2024-03-18 16:14:43.039   711-940   Looper                  com.android.systemui                 W  Slow dispatch took 3592ms SysUiLng h=android.os.Handler c=com.android.systemui.wallpapers.ImageWallpaper$CanvasEngine$$ExternalSyntheticLambda0@196764 m=0
2024-03-18 16:14:43.122 27395-27395 GraphicsEnvironment     com.google.android.gm                V  Currently set values for:
2024-03-18 16:14:43.123 27395-27395 GraphicsEnvironment     com.google.android.gm                V    angle_gl_driver_selection_pkgs=[]
2024-03-18 16:14:43.123 27395-27395 GraphicsEnvironment     com.google.android.gm                V    angle_gl_driver_selection_values=[]
2024-03-18 16:14:43.145 27395-27395 GraphicsEnvironment     com.google.android.gm                V  ANGLE GameManagerService for com.google.android.gm: false
2024-03-18 16:14:43.145 27395-27395 GraphicsEnvironment     com.google.android.gm                V  com.google.android.gm is not listed in per-application setting
2024-03-18 16:14:43.145 27395-27395 GraphicsEnvironment     com.google.android.gm                V  Neither updatable production driver nor prerelease driver is supported.
2024-03-18 16:14:43.258   711-711   TileServices            com.android.systemui                 D  Couldn't find tile for ComponentInfo{com.google.android.apps.wellbeing/com.google.android.apps.wellbeing.focusmode.quicksettings.FocusModeTileService}(0)
2024-03-18 16:14:43.268 27395-27448 Compatibil...geReporter com.google.android.gm                D  Compat change id reported: 183155436; UID 10145; state: ENABLED
2024-03-18 16:14:43.527   829-1038  BtGatt.ScanManager      com.google.android.bluetooth         D  uid 10130 isForeground true scanMode -1
2024-03-18 16:14:43.564 27395-27395 Compatibil...geReporter com.google.android.gm                D  Compat change id reported: 3400644; UID 10145; state: DISABLED
2024-03-18 16:14:43.693   503-531   UsageStatsService       system_server                        I  User[0] Time changed in by 1732 seconds
2024-03-18 16:14:43.694   503-531   UsageStatsService       system_server                        I  User[0] Flushing usage stats to disk
2024-03-18 16:14:43.828   503-531   UsageStatsDatabase      system_server                        I  Time changed by +28m52s460ms. files deleted: 0 files moved: 7
2024-03-18 16:14:43.846 27395-27455 ogle.android.gm         com.google.android.gm                W  Accessing hidden field Ljava/util/Collections$SynchronizedCollection;->mutex:Ljava/lang/Object; (max-target-o, reflection, denied)
2024-03-18 16:14:43.853   503-531   UsageStatsService       system_server                        I  User[0] Rollover scheduled @ 2024-03-19 11:30:21(1710828021696)
2024-03-18 16:14:43.874 27395-27455 ogle.android.gm         com.google.android.gm                W  Accessing hidden method Ljava/util/Collections$SynchronizedSet;-><init>(Ljava/util/Set;Ljava/lang/Object;)V (max-target-o, reflection, denied)
2024-03-18 16:14:43.875 27395-27455 ogle.android.gm         com.google.android.gm                W  Accessing hidden method Ljava/util/Collections$SynchronizedCollection;-><init>(Ljava/util/Collection;Ljava/lang/Object;)V (max-target-o, reflection, denied)
2024-03-18 16:14:44.005   503-531   UsageStatsService       system_server                        I  Time changed in by 1732 seconds
2024-03-18 16:14:44.094   503-565   Compatibil...geReporter system_server                        D  Compat change id reported: 161145287; UID 10145; state: DISABLED
2024-03-18 16:14:44.095   503-577   Compatibil...geReporter system_server                        D  Compat change id reported: 218533173; UID 10152; state: ENABLED
2024-03-18 16:14:44.100   503-577   Compatibil...geReporter system_server                        D  Compat change id reported: 218533173; UID 10145; state: ENABLED
2024-03-18 16:14:44.102   503-577   Compatibil...geReporter system_server                        D  Compat change id reported: 262645982; UID 10145; state: DISABLED
2024-03-18 16:14:44.200   503-577   Compatibil...geReporter system_server                        D  Compat change id reported: 218533173; UID 10088; state: ENABLED
2024-03-18 16:14:44.201   503-577   Compatibil...geReporter system_server                        D  Compat change id reported: 262645982; UID 10088; state: ENABLED
2024-03-18 16:14:44.262   503-565   Compatibil...geReporter system_server                        D  Compat change id reported: 261072174; UID 10145; state: DISABLED
2024-03-18 16:14:44.368 15998-15998 BoundBrokerSvc          com.google.android.gms               D  onBind: Intent { act=com.google.android.mobstore.service.START pkg=com.google.android.gms }
2024-03-18 16:14:44.369 15998-15998 BoundBrokerSvc          com.google.android.gms               D  Loading bound service for intent: Intent { act=com.google.android.mobstore.service.START pkg=com.google.android.gms }
2024-03-18 16:14:44.651 27395-27464 ogle.android.gm         com.google.android.gm                W  Long monitor contention with owner Blocking Thread #1 (27462) at java.util.Map adne.a(android.content.Context)(PG:26) waiters=0 in java.util.Map adne.a(android.content.Context) for 396ms
2024-03-18 16:14:44.775 27395-27467 org.webrtc.Logging      com.google.android.gm                I  CrashStartupListener: Checking conference crashes for 0 account(s).
2024-03-18 16:14:44.812 27395-27476 ziparchive              com.google.android.gm                W  Unable to open '/data/user_de/0/com.google.android.gms/app_chimera/m/00000002/DynamiteLoader.dm': No such file or directory
2024-03-18 16:14:44.813 27395-27476 ziparchive              com.google.android.gm                W  Unable to open '/data/user_de/0/com.google.android.gms/app_chimera/m/00000002/DynamiteLoader.dm': No such file or directory
2024-03-18 16:14:44.821   503-512   system_server           system_server                        I  Background young concurrent copying GC freed 398002(16MB) AllocSpace objects, 81(4468KB) LOS objects, 37% free, 31MB/51MB, paused 482us,442us total 979.171ms
2024-03-18 16:14:44.832   503-565   AppOps                  system_server                        W  Noting op not finished: uid 10130 pkg com.google.android.gms code 113 startTime of in progress event=1710758683532
2024-03-18 16:14:44.858   503-513   JavaBinder              system_server                        W  BinderProxy is being destroyed but the application did not call unlinkToDeath to unlink all of its death recipients beforehand.  Releasing leaked death recipient: com.android.server.am.ActivityManagerService$14
2024-03-18 16:14:44.864   503-513   BpBinder                system_server                        I  onLastStrongRef automatically unlinking death recipients: 
2024-03-18 16:14:44.868   503-513   JavaBinder              system_server                        W  BinderProxy is being destroyed but the application did not call unlinkToDeath to unlink all of its death recipients beforehand.  Releasing leaked death recipient: com.android.server.am.ActivityManagerService$14
2024-03-18 16:14:44.869   503-513   BpBinder                system_server                        I  onLastStrongRef automatically unlinking death recipients: 
2024-03-18 16:14:45.040   503-565   AppOps                  system_server                        W  Noting op not finished: uid 10130 pkg com.google.android.gms code 113 startTime of in progress event=1710758683532
2024-03-18 16:14:45.148 27395-27476 ziparchive              com.google.android.gm                W  Unable to open '/data/user_de/0/com.google.android.gms/app_chimera/m/00000001/CronetDynamite.dm': No such file or directory
2024-03-18 16:14:45.152 27395-27476 ziparchive              com.google.android.gm                W  Unable to open '/data/user_de/0/com.google.android.gms/app_chimera/m/00000001/CronetDynamite.dm': No such file or directory
2024-03-18 16:14:45.236   503-1718  ActivityManager         system_server                        I  Flag disabled. Ignoring finishAttachApplication from uid: 10145. pid: 27395
2024-03-18 16:14:45.247 27395-27395 kch                     com.google.android.gm                W  AccountUtils: For b/73513912, load account content://com.google.android.gm.sapi/account.-2137146394 from MailAppProvider. Is account valid result: 1. [CONTEXT android_log_tag="AccountUtils" ]
2024-03-18 16:14:45.255 27395-27395 kch                     com.google.android.gm                W  AccountUtils: For b/73513912, load account content://com.google.android.gm.email.provider/account.-437561172?suppress_combined%3Dtrue from MailAppProvider. Is account valid result: 1. [CONTEXT android_log_tag="AccountUtils" ]
2024-03-18 16:14:45.263 27395-27395 kch                     com.google.android.gm                W  [Gmail] PhenotypeManagerImpl: Account is null, skip calling setAccount.
2024-03-18 16:14:45.417  3897-3897  BoundBrokerSvc          com.google.android.gms.persistent    D  onBind: Intent { act=com.google.android.gms.auth.account.workaccount.START dat=chimera-action:/... cmp=com.google.android.gms/.chimera.PersistentApiService }
2024-03-18 16:14:45.419  3897-3897  BoundBrokerSvc          com.google.android.gms.persistent    D  Loading bound service for intent: Intent { act=com.google.android.gms.auth.account.workaccount.START dat=chimera-action:/... cmp=com.google.android.gms/.chimera.PersistentApiService }
2024-03-18 16:14:45.455  3897-4050  AuthPII                 com.google.android.gms.persistent    E  [GoogleAccountDataServiceImpl] getToken() -> BAD_AUTHENTICATION. App: com.google.android.gms, Service: oauth2:https://www.googleapis.com/auth/userinfo.email https://www.googleapis.com/auth/account.capabilities https://www.googleapis.com/auth/account.service_flags
                                                                                                    abcp: Long live credential not available.
                                                                                                        at mbt.a(:com.google.android.gms@231818044@23.18.18 (190400-535401451):8)
                                                                                                        at mca.b(:com.google.android.gms@231818044@23.18.18 (190400-535401451):3)
                                                                                                        at lzx.m(:com.google.android.gms@231818044@23.18.18 (190400-535401451):48)
                                                                                                        at lyz.a(:com.google.android.gms@231818044@23.18.18 (190400-535401451):22)
                                                                                                        at lze.a(:com.google.android.gms@231818044@23.18.18 (190400-535401451):2)
                                                                                                        at mcs.b(:com.google.android.gms@231818044@23.18.18 (190400-535401451):3)
                                                                                                        at mcs.a(:com.google.android.gms@231818044@23.18.18 (190400-535401451):6)
                                                                                                        at lye.hasFeatures(:com.google.android.gms@231818044@23.18.18 (190400-535401451):2)
                                                                                                        at android.accounts.AbstractAccountAuthenticator$Transport.hasFeatures(AbstractAccountAuthenticator.java:324)
                                                                                                        at android.accounts.IAccountAuthenticator$Stub.onTransact(IAccountAuthenticator.java:299)
                                                                                                        at android.os.Binder.transact(Binder.java:1183)
                                                                                                        at aumo.onTransact(:com.google.android.gms@231818044@23.18.18 (190400-535401451):1)
                                                                                                        at android.os.Binder.transact(Binder.java:1183)
                                                                                                        at aoey.onTransact(:com.google.android.gms@231818044@23.18.18 (190400-535401451):22)
                                                                                                        at android.os.Binder.execTransactInternal(Binder.java:1344)
                                                                                                        at android.os.Binder.execTransact(Binder.java:1275)
2024-03-18 16:14:45.462  3897-4050  AuthPII                 com.google.android.gms.persistent    E  Message is Long live credential not available.
                                                                                                    abcp: Long live credential not available.
                                                                                                        at mbt.a(:com.google.android.gms@231818044@23.18.18 (190400-535401451):8)
                                                                                                        at mca.b(:com.google.android.gms@231818044@23.18.18 (190400-535401451):3)
                                                                                                        at lzx.m(:com.google.android.gms@231818044@23.18.18 (190400-535401451):48)
                                                                                                        at lyz.a(:com.google.android.gms@231818044@23.18.18 (190400-535401451):22)
                                                                                                        at lze.a(:com.google.android.gms@231818044@23.18.18 (190400-535401451):2)
                                                                                                        at mcs.b(:com.google.android.gms@231818044@23.18.18 (190400-535401451):3)
                                                                                                        at mcs.a(:com.google.android.gms@231818044@23.18.18 (190400-535401451):6)
                                                                                                        at lye.hasFeatures(:com.google.android.gms@231818044@23.18.18 (190400-535401451):2)
                                                                                                        at android.accounts.AbstractAccountAuthenticator$Transport.hasFeatures(AbstractAccountAuthenticator.java:324)
                                                                                                        at android.accounts.IAccountAuthenticator$Stub.onTransact(IAccountAuthenticator.java:299)
                                                                                                        at android.os.Binder.transact(Binder.java:1183)
                                                                                                        at aumo.onTransact(:com.google.android.gms@231818044@23.18.18 (190400-535401451):1)
                                                                                                        at android.os.Binder.transact(Binder.java:1183)
                                                                                                        at aoey.onTransact(:com.google.android.gms@231818044@23.18.18 (190400-535401451):22)
                                                                                                        at android.os.Binder.execTransactInternal(Binder.java:1344)
                                                                                                        at android.os.Binder.execTransact(Binder.java:1275)
2024-03-18 16:14:45.469  3897-4050  Auth                    com.google.android.gms.persistent    W  [AccountStateSyncher] Unable to look up account state from server: couldn't fetch accessToken [CONTEXT service_id=153 ]
2024-03-18 16:14:45.472  3897-4050  Auth                    com.google.android.gms.persistent    W  [GaiaServicesFlagManager] Services not available! [CONTEXT service_id=153 ]
2024-03-18 16:14:45.542  3897-4032  AuthPII                 com.google.android.gms.persistent    E  [GoogleAccountDataServiceImpl] getToken() -> BAD_AUTHENTICATION. App: com.google.android.gms, Service: oauth2:https://www.googleapis.com/auth/userinfo.email https://www.googleapis.com/auth/account.capabilities https://www.googleapis.com/auth/account.service_flags
                                                                                                    abcp: Long live credential not available.
                                                                                                        at mbt.a(:com.google.android.gms@231818044@23.18.18 (190400-535401451):8)
                                                                                                        at mca.b(:com.google.android.gms@231818044@23.18.18 (190400-535401451):3)
                                                                                                        at lzx.m(:com.google.android.gms@231818044@23.18.18 (190400-535401451):48)
                                                                                                        at lyz.a(:com.google.android.gms@231818044@23.18.18 (190400-535401451):22)
                                                                                                        at lze.a(:com.google.android.gms@231818044@23.18.18 (190400-535401451):2)
                                                                                                        at mcs.b(:com.google.android.gms@231818044@23.18.18 (190400-535401451):3)
                                                                                                        at mcs.a(:com.google.android.gms@231818044@23.18.18 (190400-535401451):6)
                                                                                                        at lye.hasFeatures(:com.google.android.gms@231818044@23.18.18 (190400-535401451):2)
                                                                                                        at android.accounts.AbstractAccountAuthenticator$Transport.hasFeatures(AbstractAccountAuthenticator.java:324)
                                                                                                        at android.accounts.IAccountAuthenticator$Stub.onTransact(IAccountAuthenticator.java:299)
                                                                                                        at android.os.Binder.transact(Binder.java:1183)
                                                                                                        at aumo.onTransact(:com.google.android.gms@231818044@23.18.18 (190400-535401451):1)
                                                                                                        at android.os.Binder.transact(Binder.java:1183)
                                                                                                        at aoey.onTransact(:com.google.android.gms@231818044@23.18.18 (190400-535401451):22)
                                                                                                        at android.os.Binder.execTransactInternal(Binder.java:1344)
                                                                                                        at android.os.Binder.execTransact(Binder.java:1275)
2024-03-18 16:14:45.547  3897-4032  AuthPII                 com.google.android.gms.persistent    E  Message is Long live credential not available.
                                                                                                    abcp: Long live credential not available.
                                                                                                        at mbt.a(:com.google.android.gms@231818044@23.18.18 (190400-535401451):8)
                                                                                                        at mca.b(:com.google.android.gms@231818044@23.18.18 (190400-535401451):3)
                                                                                                        at lzx.m(:com.google.android.gms@231818044@23.18.18 (190400-535401451):48)
                                                                                                        at lyz.a(:com.google.android.gms@231818044@23.18.18 (190400-535401451):22)
                                                                                                        at lze.a(:com.google.android.gms@231818044@23.18.18 (190400-535401451):2)
                                                                                                        at mcs.b(:com.google.android.gms@231818044@23.18.18 (190400-535401451):3)
                                                                                                        at mcs.a(:com.google.android.gms@231818044@23.18.18 (190400-535401451):6)
                                                                                                        at lye.hasFeatures(:com.google.android.gms@231818044@23.18.18 (190400-535401451):2)
                                                                                                        at android.accounts.AbstractAccountAuthenticator$Transport.hasFeatures(AbstractAccountAuthenticator.java:324)
                                                                                                        at android.accounts.IAccountAuthenticator$Stub.onTransact(IAccountAuthenticator.java:299)
                                                                                                        at android.os.Binder.transact(Binder.java:1183)
                                                                                                        at aumo.onTransact(:com.google.android.gms@231818044@23.18.18 (190400-535401451):1)
                                                                                                        at android.os.Binder.transact(Binder.java:1183)
                                                                                                        at aoey.onTransact(:com.google.android.gms@231818044@23.18.18 (190400-535401451):22)
                                                                                                        at android.os.Binder.execTransactInternal(Binder.java:1344)
                                                                                                        at android.os.Binder.execTransact(Binder.java:1275)
2024-03-18 16:14:45.583  3897-4032  Auth                    com.google.android.gms.persistent    W  [AccountStateSyncher] Unable to look up account state from server: couldn't fetch accessToken [CONTEXT service_id=153 ]
2024-03-18 16:14:45.602  3897-4032  Auth                    com.google.android.gms.persistent    W  [GaiaServicesFlagManager] Services not available! [CONTEXT service_id=153 ]
2024-03-18 16:14:45.894 27395-27494 ogle.android.gm         com.google.android.gm                W  Long monitor contention with owner AsyncTask #3 (27493) at android.database.sqlite.SQLiteDatabase com.android.email.provider.EmailProvider.g(android.content.Context)(PG:42) waiters=0 in android.database.sqlite.SQLiteDatabase com.android.email.provider.EmailProvider.g(android.content.Context) for 449ms
2024-03-18 16:14:45.897 27395-27463 Compatibil...geReporter com.google.android.gm                D  Compat change id reported: 160794467; UID 10145; state: ENABLED
2024-03-18 16:14:45.902 27395-27395 Compatibil...geReporter com.google.android.gm                D  Compat change id reported: 194532703; UID 10145; state: ENABLED
2024-03-18 16:14:45.903 27395-27395 Compatibil...geReporter com.google.android.gm                D  Compat change id reported: 253665015; UID 10145; state: DISABLED
2024-03-18 16:14:45.904   503-1815  Compatibil...geReporter system_server                        D  Compat change id reported: 253665015; UID 10145; state: DISABLED
2024-03-18 16:14:45.905   503-1815  Compatibil...geReporter system_server                        D  Compat change id reported: 194532703; UID 10145; state: ENABLED
2024-03-18 16:14:45.931   503-1815  ProcessStats            system_server                        W  Tracking association SourceState{7e6965c com.google.android.gm/10145 ImpBg #23452} whose proc state 6 is better than process ProcessState{ff0ee23 com.google.process.gservices/10130 pkg=com.google.android.gsf} proc state 10 (35 skipped)
2024-03-18 16:14:46.025   503-565   ActivityManager         system_server                        I  Killing 26800:com.google.android.apps.photos/u0a154 (adj 965): empty #17
2024-03-18 16:14:46.029   503-577   Compatibil...geReporter system_server                        D  Compat change id reported: 265195908; UID 10145; state: ENABLED
2024-03-18 16:14:46.037   503-534   libprocessgroup         system_server                        I  Successfully killed process cgroup uid 10154 pid 26800 in 0ms
2024-03-18 16:14:46.117   316-316   Zygote                  pid-316                              I  Process 26800 exited due to signal 9 (Killed)
2024-03-18 16:14:46.122   503-639   ConnectivityService     system_server                        D  releasing NetworkRequest [ REQUEST id=899, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10154 RequestorUid: 10154 RequestorPkg: com.google.android.apps.photos UnderlyingNetworks: Null] ] (release request)
2024-03-18 16:14:46.125   503-523   DisplayManagerService   system_server                        D  Drop pending events for gone uid 10154
2024-03-18 16:14:48.576   503-565   ActivityManager         system_server                        I  Killing 26425:com.android.settings/1000 (adj 975): empty #17
2024-03-18 16:14:48.589   503-534   libprocessgroup         system_server                        I  Successfully killed process cgroup uid 1000 pid 26425 in 9ms
2024-03-18 16:14:48.673   316-316   Zygote                  pid-316                              I  Process 26425 exited due to signal 9 (Killed)
2024-03-18 16:14:48.726 27358-27428 DeferrableExecutor      com.google.android.deskclock         D  DeferrableExecutor unblocked after max task delay
2024-03-18 16:14:48.822   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 16:14:48.855 27358-27428 ClearcutMetricSnapshotT com.google.android.deskclock         V  Sending Primes unknown: # gbl@a6ebfc45
2024-03-18 16:14:48.864 27358-27428 ClearcutMetricSnapshotT com.google.android.deskclock         V  KjcKHGNvbS5nb29nbGUuYW5kcm9pZC5kZXNrY2xvY2sSDzcuNCAoNTA0MzE3OTYwKRgBIM68lO8BugEKCNjwhgIQ4JzzAvIBAhgCggIMEggIBggECAUIAxgB
2024-03-18 16:14:48.989 27358-27369 ClearcutMetricXmitter   com.google.android.deskclock         V  Transmission is done.
2024-03-18 16:14:50.788   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 16:14:54.782 26363-26418 Bugle                   com.google.android.apps.messaging    W  TextClassifierLibManagerImpl: Reclaiming memory at level: 40
2024-03-18 16:14:55.279  3897-3897  BoundBrokerSvc          com.google.android.gms.persistent    D  onUnbind: Intent { act=com.google.android.gms.clearcut.bootcount.service.START dat=chimera-action:/... cmp=com.google.android.gms/.chimera.PersistentBoundBrokerService }
2024-03-18 16:14:56.759   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 16:14:57.561  3897-3897  BoundBrokerSvc          com.google.android.gms.persistent    D  onUnbind: Intent { act=com.google.android.contextmanager.service.ContextManagerService.START pkg=com.google.android.gms }
2024-03-18 16:15:00.014   711-827   Looper                  com.android.systemui                 W  Drained
2024-03-18 16:15:00.030  5925-5987  AiAiEcho                com.google.android.as                I  Predicting[0]: 
2024-03-18 16:15:00.032  5925-5987  AiAiEcho                com.google.android.as                I  EchoTargets: 
                                                                                                    Filtered by AiAi flag check: 
2024-03-18 16:15:00.035  5925-5987  AiAiEcho                com.google.android.as                I  Ranked targets strategy: SORT, count: 0, ranking metadata: 
2024-03-18 16:15:00.049  5925-5987  AiAiEcho                com.google.android.as                I  #postPredictionTargets: Sending updates to UISurface lockscreen with targets# 0 (types=[])
2024-03-18 16:15:00.060   711-711   PageIndicator           com.android.systemui                 W  Total number of pages invalid: 0. Assuming 1 page.
2024-03-18 16:15:00.145   711-820   EGL_emulation           com.android.systemui                 D  app_time_stats: avg=23767.92ms min=23767.92ms max=23767.92ms count=1
2024-03-18 16:15:00.592  3897-3897  BoundBrokerSvc          com.google.android.gms.persistent    D  onUnbind: Intent { act=com.google.android.gms.auth.account.workaccount.START dat=chimera-action:/... cmp=com.google.android.gms/.chimera.PersistentApiService }
2024-03-18 16:15:00.756   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 16:15:00.816 15998-15998 BoundBrokerSvc          com.google.android.gms               D  onUnbind: Intent { act=com.google.android.mobstore.service.START pkg=com.google.android.gms }
2024-03-18 16:15:04.694   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 16:15:04.726   503-584   ActivityManager         system_server                        D  freezing 26363 com.google.android.apps.messaging
2024-03-18 16:15:05.843  3897-3897  BoundBrokerSvc          com.google.android.gms.persistent    D  onUnbind: Intent { act=com.google.android.gms.phenotype.service.START pkg=com.google.android.gms }
2024-03-18 16:15:05.993   503-584   ActivityManager         system_server                        D  freezing 27081 com.google.android.apps.youtube.music
2024-03-18 16:15:08.015   503-584   ActivityManager         system_server                        D  freezing 27096 com.google.android.contacts
2024-03-18 16:15:08.341   503-584   ActivityManager         system_server                        D  freezing 27114 com.google.android.dialer
2024-03-18 16:15:08.672   503-584   ActivityManager         system_server                        D  freezing 16045 com.google.process.gservices
2024-03-18 16:15:09.677   503-584   ActivityManager         system_server                        D  freezing 27358 com.google.android.deskclock
2024-03-18 16:15:09.801   503-584   ActivityManager         system_server                        D  freezing 16886 com.google.android.permissioncontroller
2024-03-18 16:15:09.884   503-584   ActivityManager         system_server                        D  freezing 16929 com.google.android.rkpdapp
2024-03-18 16:15:09.920   503-584   ActivityManager         system_server                        D  freezing 16958 com.google.android.tts
2024-03-18 16:15:09.954   503-584   ActivityManager         system_server                        D  freezing 26820 com.google.android.youtube
2024-03-18 16:15:10.803   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 16:15:10.827   503-584   ActivityManager         system_server                        D  freezing 15998 com.google.android.gms
2024-03-18 16:15:12.089   503-584   ActivityManager         system_server                        D  freezing 27395 com.google.android.gm
2024-03-18 16:15:12.428   503-584   ActivityManager         system_server                        D  freezing 20712 com.google.android.apps.wellbeing
2024-03-18 16:15:12.885   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 16:15:20.750   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 16:15:20.821   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 16:15:20.986   503-2352  WifiNl80211Manager      system_server                        D  Scan result ready event
2024-03-18 16:15:20.989   503-2352  WifiNative              system_server                        D  Scan result ready event
2024-03-18 16:15:28.758   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 16:15:30.761   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 16:15:36.693   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 16:15:40.809   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 16:15:40.857   711-820   EGL_emulation           com.android.systemui                 D  app_time_stats: avg=40711.15ms min=40711.15ms max=40711.15ms count=1
2024-03-18 16:15:44.885   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 16:15:50.753   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 16:15:52.821   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 16:16:00.036  5925-5987  AiAiEcho                com.google.android.as                I  Predicting[0]: 
2024-03-18 16:16:00.041  5925-5987  AiAiEcho                com.google.android.as                I  EchoTargets: 
                                                                                                    Filtered by AiAi flag check: 
2024-03-18 16:16:00.044  5925-5987  AiAiEcho                com.google.android.as                I  Ranked targets strategy: SORT, count: 0, ranking metadata: 
2024-03-18 16:16:00.052  5925-5987  AiAiEcho                com.google.android.as                I  #postPredictionTargets: Sending updates to UISurface lockscreen with targets# 0 (types=[])
2024-03-18 16:16:00.096   711-711   PageIndicator           com.android.systemui                 W  Total number of pages invalid: 0. Assuming 1 page.
2024-03-18 16:16:00.106   711-820   EGL_emulation           com.android.systemui                 D  app_time_stats: avg=19184.98ms min=19184.98ms max=19184.98ms count=1
2024-03-18 16:16:00.757   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 16:16:00.765   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 16:16:00.879   870-889   m.android.phone         com.android.phone                    I  Background concurrent copying GC freed 104801(3478KB) AllocSpace objects, 0(0B) LOS objects, 49% free, 3527KB/7055KB, paused 113us,28us total 131.132ms
2024-03-18 16:16:00.881   870-889   m.android.phone         com.android.phone                    W  Reducing the number of considered missed Gc histogram windows from 147 to 100
2024-03-18 16:16:08.693   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 16:16:10.752   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 16:16:16.886   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 16:16:20.770   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 16:16:20.791   711-820   EGL_emulation           com.android.systemui                 D  app_time_stats: avg=20684.13ms min=20684.13ms max=20684.13ms count=1
2024-03-18 16:16:24.822   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 16:16:30.770   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 16:16:32.757   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 16:16:40.693   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 16:16:40.756   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 16:16:48.424  3897-27039 AlarmManager            com.google.android.gms.persistent    I  setExactAndAllowWhileIdle [name: GCM_HB_ALARM type: 2 triggerAtMillis: 17288563]
2024-03-18 16:16:48.549  3897-27047 NativeCrypto            com.google.android.gms.persistent    V  Read error: ssl=0xb400007ac1319a18: I/O error during system call, Connection reset by peer
2024-03-18 16:16:48.552  3897-27039 WakeLock                com.google.android.gms.persistent    E  GCM_HB_ALARM release without a matched acquire!
2024-03-18 16:16:48.572  3897-27039 NativeCrypto            com.google.android.gms.persistent    V  SSL shutdown failed: ssl=0xb400007ac1319a18: I/O error during system call, Broken pipe
2024-03-18 16:16:48.616  3897-3897  BoundBrokerSvc          com.google.android.gms.persistent    D  onBind: Intent { act=com.google.android.gms.scheduler.ACTION_PROXY_SCHEDULE dat=chimera-action:/... cmp=com.google.android.gms/.chimera.PersistentApiService }
2024-03-18 16:16:48.622  3897-3897  BoundBrokerSvc          com.google.android.gms.persistent    D  Loading bound service for intent: Intent { act=com.google.android.gms.scheduler.ACTION_PROXY_SCHEDULE dat=chimera-action:/... cmp=com.google.android.gms/.chimera.PersistentApiService }
2024-03-18 16:16:48.648  3897-27039 WakeLock                com.google.android.gms.persistent    E  GCM_HB_ALARM release without a matched acquire!
2024-03-18 16:16:48.657  3897-27039 WakeLock                com.google.android.gms.persistent    W  GCM_HB_ALARM counter does not exist
2024-03-18 16:16:48.672   503-639   ConnectivityService     system_server                        D  reportNetworkConnectivity(101, false) by 10130
2024-03-18 16:16:48.691   804-1642  NetworkMonitor/101      com.android.networkstack.process     D  Forcing reevaluation for UID 10130. Dns signal count: 0
2024-03-18 16:16:48.762   804-27512 TrafficStats            com.android.networkstack.process     D  tagSocket(5) with statsTag=0xffffff81, statsUid=-1
2024-03-18 16:16:48.767   804-27512 TrafficStats            com.android.networkstack.process     D  tagSocket(5) with statsTag=0xffffff81, statsUid=-1
2024-03-18 16:16:48.768   804-27511 TrafficStats            com.android.networkstack.process     D  tagSocket(107) with statsTag=0xffffff81, statsUid=-1
2024-03-18 16:16:48.771   804-27511 TrafficStats            com.android.networkstack.process     D  tagSocket(5) with statsTag=0xffffff81, statsUid=-1
2024-03-18 16:16:48.776   315-27513 resolv                  netd                                 I  ResNSendHandler::run: 0 / {101 983141 101 983141 1073 1}
2024-03-18 16:16:48.779   315-27514 resolv                  netd                                 I  ResNSendHandler::run: 0 / {101 983141 101 983141 1073 1}
2024-03-18 16:16:48.784   315-27515 resolv                  netd                                 I  ResNSendHandler::run: 0 / {101 983141 101 983141 1073 1}
2024-03-18 16:16:48.787   315-27516 resolv                  netd                                 I  ResNSendHandler::run: 0 / {101 983141 101 983141 1073 1}
2024-03-18 16:16:48.791   315-27513 resolv                  netd                                 I  res_nsend: used send_dg 75 terrno: 0
2024-03-18 16:16:48.794   315-27514 resolv                  netd                                 I  res_nsend: used send_dg 60 terrno: 0
2024-03-18 16:16:48.799   315-27515 resolv                  netd                                 I  res_nsend: used send_dg 48 terrno: 0
2024-03-18 16:16:48.800   315-27516 resolv                  netd                                 I  res_nsend: used send_dg 63 terrno: 0
2024-03-18 16:16:48.814   804-804   TrafficStats            com.android.networkstack.process     D  tagSocket(68) with statsTag=0xffffffff, statsUid=-1
2024-03-18 16:16:48.820   804-804   TrafficStats            com.android.networkstack.process     D  tagSocket(68) with statsTag=0xffffffff, statsUid=-1
2024-03-18 16:16:48.822   804-27512 NetworkMonitor/101      com.android.networkstack.process     D  PROBE_DNS connectivitycheck.gstatic.com 59ms OK 142.250.193.3,2404:6800:4002:822::2003
2024-03-18 16:16:48.825   804-804   TrafficStats            com.android.networkstack.process     D  tagSocket(5) with statsTag=0xffffffff, statsUid=-1
2024-03-18 16:16:48.830   804-804   TrafficStats            com.android.networkstack.process     D  tagSocket(5) with statsTag=0xffffffff, statsUid=-1
2024-03-18 16:16:48.831   804-27511 NetworkMonitor/101      com.android.networkstack.process     D  PROBE_DNS www.google.com 70ms OK 142.250.193.4,2404:6800:4002:819::2004
2024-03-18 16:16:48.831   315-27517 resolv                  netd                                 I  GetAddrInfoHandler::run: {101 983141 101 983141 1073 1}
2024-03-18 16:16:48.834   315-27518 resolv                  netd                                 I  GetAddrInfoHandler::run: {101 786533 101 983141 10130 0}
2024-03-18 16:16:48.839   315-27519 resolv                  netd                                 I  GetAddrInfoHandler::run: {101 983141 101 983141 1073 1}
2024-03-18 16:16:48.843   315-27523 resolv                  netd                                 I  res_nmkquery: (QUERY, IN, A)
2024-03-18 16:16:48.844   315-27523 resolv                  netd                                 I  resolv_cache_lookup: FOUND IN CACHE entry=0xb40000767f659710
2024-03-18 16:16:48.844   315-27523 resolv                  netd                                 I  doQuery: rcode=0, ancount=1, return value=63
2024-03-18 16:16:48.845   315-27521 resolv                  netd                                 I  res_nmkquery: (QUERY, IN, A)
2024-03-18 16:16:48.846   315-27520 resolv                  netd                                 I  res_nmkquery: (QUERY, IN, AAAA)
2024-03-18 16:16:48.848   315-27524 resolv                  netd                                 I  res_nmkquery: (QUERY, IN, AAAA)
2024-03-18 16:16:48.849   315-27522 resolv                  netd                                 I  res_nmkquery: (QUERY, IN, AAAA)
2024-03-18 16:16:48.849   315-27522 resolv                  netd                                 I  resolv_cache_lookup: FOUND IN CACHE entry=0xb40000767f65add0
2024-03-18 16:16:48.850   315-27522 resolv                  netd                                 I  doQuery: rcode=0, ancount=1, return value=75
2024-03-18 16:16:48.851   315-27525 resolv                  netd                                 I  res_nmkquery: (QUERY, IN, A)
2024-03-18 16:16:48.851   315-27524 resolv                  netd                                 I  resolv_cache_lookup: FOUND IN CACHE entry=0xb4000076ff65ecd0
2024-03-18 16:16:48.851   315-27524 resolv                  netd                                 I  doQuery: rcode=0, ancount=1, return value=60
2024-03-18 16:16:48.851   315-27525 resolv                  netd                                 I  resolv_cache_lookup: FOUND IN CACHE entry=0xb40000766f6693d0
2024-03-18 16:16:48.851   315-27525 resolv                  netd                                 I  doQuery: rcode=0, ancount=1, return value=48
2024-03-18 16:16:48.860   804-27511 TrafficStats            com.android.networkstack.process     D  tagSocket(5) with statsTag=0xffffff81, statsUid=-1
2024-03-18 16:16:48.862   804-27512 TrafficStats            com.android.networkstack.process     D  tagSocket(68) with statsTag=0xffffff81, statsUid=-1
2024-03-18 16:16:48.885   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 16:16:48.891   804-27512 NetworkMonitor/101      com.android.networkstack.process     D  PROBE_HTTP http://connectivitycheck.gstatic.com/generate_204 time=65ms ret=204 request={Connection=[close], User-Agent=[Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.32 Safari/537.36]} headers={null=[HTTP/1.1 204 No Content], Connection=[close], Content-Length=[0], Cross-Origin-Resource-Policy=[cross-origin], Date=[Mon, 18 Mar 2024 10:46:49 GMT], X-Android-Received-Millis=[1710758808884], X-Android-Response-Source=[NETWORK 204], X-Android-Selected-Protocol=[http/1.1], X-Android-Sent-Millis=[1710758808875]}
2024-03-18 16:16:48.986   315-27521 resolv                  netd                                 I  res_tls_send: TLS query result: 0
2024-03-18 16:16:48.986   315-27521 resolv                  netd                                 I  doQuery: rcode=0, ancount=2, return value=468
2024-03-18 16:16:48.986   315-27520 resolv                  netd                                 I  res_tls_send: TLS query result: 0
2024-03-18 16:16:48.986   315-27520 resolv                  netd                                 I  doQuery: rcode=0, ancount=2, return value=468
2024-03-18 16:16:48.993  3897-27047 TrafficStats            com.google.android.gms.persistent    D  tagSocket(-1) with statsTag=0x20000407, statsUid=-1
2024-03-18 16:16:48.994  3897-27047 TrafficStats            com.google.android.gms.persistent    I  tagSocketFd(-1, 536871943, -1) failed with errno-9
2024-03-18 16:16:48.995  3897-27047 TrafficStats            com.google.android.gms.persistent    D  tagSocket(79) with statsTag=0x20000407, statsUid=-1
2024-03-18 16:16:49.011   804-27511 NetworkMonitor/101      com.android.networkstack.process     D  PROBE_HTTPS https://www.google.com/generate_204 time=178ms ret=204 request={Connection=[close], User-Agent=[Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.32 Safari/537.36]} headers={null=[HTTP/1.1 204 No Content], Alt-Svc=[h3=":443"; ma=2592000,h3-29=":443"; ma=2592000], Connection=[close], Content-Length=[0], Cross-Origin-Resource-Policy=[cross-origin], Date=[Mon, 18 Mar 2024 10:46:49 GMT], X-Android-Received-Millis=[1710758809005], X-Android-Response-Source=[NETWORK 204], X-Android-Selected-Protocol=[http/1.1], X-Android-Sent-Millis=[1710758808991]}
2024-03-18 16:16:49.013   804-27510 NetworkMonitor/101      com.android.networkstack.process     D  isCaptivePortal: isSuccessful()=true isPortal()=false RedirectUrl=null isPartialConnectivity()=false Time=312ms
2024-03-18 16:16:49.016   503-639   ConnectivityService     system_server                        D  [101 WIFI] validation passed
2024-03-18 16:16:49.186  3897-27444 AlarmManager            com.google.android.gms.persistent    I  setExactAndAllowWhileIdle [name: GCM_HB_ALARM type: 2 triggerAtMillis: 17339325]
2024-03-18 16:16:49.310  3897-27527 AlarmManager            com.google.android.gms.persistent    I  setExactAndAllowWhileIdle [name: GCM_HB_ALARM type: 2 triggerAtMillis: 17339449]
2024-03-18 16:16:49.324  3897-27527 AlarmManager            com.google.android.gms.persistent    I  setExactAndAllowWhileIdle [name: GCM_HB_ALARM type: 2 triggerAtMillis: 17339463]
2024-03-18 16:16:50.449   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 16:16:50.773   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 16:16:53.458   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 16:16:56.460   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 16:16:56.822   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 16:16:59.483   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 16:17:00.015  5925-5987  AiAiEcho                com.google.android.as                I  Predicting[0]: 
2024-03-18 16:17:00.019  5925-5987  AiAiEcho                com.google.android.as                I  EchoTargets: 
                                                                                                    Filtered by AiAi flag check: 
2024-03-18 16:17:00.021  5925-5987  AiAiEcho                com.google.android.as                I  Ranked targets strategy: SORT, count: 0, ranking metadata: 
2024-03-18 16:17:00.029  5925-5987  AiAiEcho                com.google.android.as                I  #postPredictionTargets: Sending updates to UISurface lockscreen with targets# 0 (types=[])
2024-03-18 16:17:00.084   711-711   PageIndicator           com.android.systemui                 W  Total number of pages invalid: 0. Assuming 1 page.
2024-03-18 16:17:00.111   711-820   EGL_emulation           com.android.systemui                 D  app_time_stats: avg=39244.70ms min=39244.70ms max=39244.70ms count=1
2024-03-18 16:17:00.835   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 16:17:04.368  3897-3897  BoundBrokerSvc          com.google.android.gms.persistent    D  onUnbind: Intent { act=com.google.android.gms.scheduler.ACTION_PROXY_SCHEDULE dat=chimera-action:/... cmp=com.google.android.gms/.chimera.PersistentApiService }
2024-03-18 16:17:04.759   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 16:17:05.502   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 16:17:08.536   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 16:17:10.756   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 16:17:11.544   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 16:17:12.693   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 16:17:14.549   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 16:17:19.635  3897-27527 AlarmManager            com.google.android.gms.persistent    I  setExactAndAllowWhileIdle [name: GCM_HB_ALARM type: 2 triggerAtMillis: 17369774]
2024-03-18 16:17:19.654  3897-27527 AlarmManager            com.google.android.gms.persistent    I  setExactAndAllowWhileIdle [name: GCM_HB_ALARM type: 2 triggerAtMillis: 17369794]
2024-03-18 16:17:19.715  3897-3897  BoundBrokerSvc          com.google.android.gms.persistent    D  onBind: Intent { act=com.google.android.gms.scheduler.ACTION_PROXY_SCHEDULE dat=chimera-action:/... cmp=com.google.android.gms/.chimera.PersistentApiService }
2024-03-18 16:17:19.717  3897-3897  BoundBrokerSvc          com.google.android.gms.persistent    D  Loading bound service for intent: Intent { act=com.google.android.gms.scheduler.ACTION_PROXY_SCHEDULE dat=chimera-action:/... cmp=com.google.android.gms/.chimera.PersistentApiService }
2024-03-18 16:17:20.611   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 16:17:20.820   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 16:17:20.886   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 16:17:23.619   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 16:17:26.649   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 16:17:28.822   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 16:17:29.647   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callback because the new wifi icon is enabled
2024-03-18 16:17:30.801   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 16:17:34.821  3897-3897  BoundBrokerSvc          com.google.android.gms.persistent    D  onUnbind: Intent { act=com.google.android.gms.scheduler.ACTION_PROXY_SCHEDULE dat=chimera-action:/... cmp=com.google.android.gms/.chimera.PersistentApiService }
2024-03-18 16:17:36.758   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 16:17:40.759   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 16:17:44.694   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 16:17:50.750   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 16:17:52.887   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 16:17:57.244   829-973   bluetooth               com.google.android.bluetooth         I  packages/modules/Bluetooth/system/gd/hci/le_address_manager.cc:265 ack_pause: Client already in paused state
2024-03-18 16:17:57.273   829-973   bluetooth               com.google.android.bluetooth         I  packages/modules/Bluetooth/system/gd/hci/le_address_manager.cc:596 OnCommandComplete: Received command complete with op_code LE_SET_RANDOM_ADDRESS
2024-03-18 16:17:57.273   829-973   bluetooth               com.google.android.bluetooth         I  packages/modules/Bluetooth/system/gd/hci/le_address_manager.cc:616 OnCommandComplete: update random address : xx:xx:xx:xx:6e:9f
2024-03-18 16:17:57.273   829-973   bluetooth               com.google.android.bluetooth         I  packages/modules/Bluetooth/system/gd/hci/le_address_manager.cc:294 resume_registered_clients: Resuming registered clients
2024-03-18 16:18:00.094  5925-5987  AiAiEcho                com.google.android.as                I  Predicting[0]: 
2024-03-18 16:18:00.096  5925-5987  AiAiEcho                com.google.android.as                I  EchoTargets: 
                                                                                                    Filtered by AiAi flag check: 
2024-03-18 16:18:00.099  5925-5987  AiAiEcho                com.google.android.as                I  Ranked targets strategy: SORT, count: 0, ranking metadata: 
2024-03-18 16:18:00.108  5925-5987  AiAiEcho                com.google.android.as                I  #postPredictionTargets: Sending updates to UISurface lockscreen with targets# 0 (types=[])
2024-03-18 16:18:00.150   711-711   PageIndicator           com.android.systemui                 W  Total number of pages invalid: 0. Assuming 1 page.
2024-03-18 16:18:00.180   711-820   EGL_emulation           com.android.systemui                 D  app_time_stats: avg=30034.00ms min=691.99ms max=59376.01ms count=2
2024-03-18 16:18:00.792   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 16:18:00.826   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 16:18:01.004   503-2344  WifiNl80211Manager      system_server                        D  Scan result ready event
2024-03-18 16:18:01.006   503-2344  WifiNative              system_server                        D  Scan result ready event
2024-03-18 16:18:08.763   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 16:18:10.753   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 16:18:16.694   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 16:18:20.757   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled
2024-03-18 16:18:24.885   695-695   wpa_supplicant          wpa_supplicant                       I  wlan0: CTRL-EVENT-BEACON-LOSS 
2024-03-18 16:18:30.792   711-711   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled

### Project dependencies

```json
{
  "name": "test-camera-vision-lib",
  "version": "1.0.0",
  "main": "./index.js",
  "scripts": {
    "start": "expo start",
    "android": "expo run:android",
    "ios": "expo run:ios",
    "web": "expo start --web"
  },
  "dependencies": {
    "@react-native-camera-roll/camera-roll": "^7.4.0",
    "@react-native-community/blur": "^4.4.0",
    "@react-navigation/core": "^6.4.10",
    "@react-navigation/native-stack": "^6.9.17",
    "@types/react": "~18.2.45",
    "expo": "~50.0.4",
    "expo-dev-client": "~3.3.7",
    "expo-status-bar": "~1.11.1",
    "expo-system-ui": "~2.9.3",
    "react": "18.2.0",
    "react-native": "0.73.2",
    "react-native-fast-image": "^8.6.3",
    "react-native-fast-tflite": "^1.1.3",
    "react-native-gesture-handler": "~2.14.0",
    "react-native-mmkv": "^2.11.0",
    "react-native-pressable-opacity": "^1.0.10",
    "react-native-reanimated": "~3.6.2",
    "react-native-safe-area-context": "4.8.2",
    "react-native-screens": "~3.29.0",
    "react-native-static-safe-area-insets": "^2.2.0",
    "react-native-vector-icons": "^10.0.3",
    "react-native-video": "^5.2.1",
    "react-native-vision-camera": "^3.9.0",
    "react-native-worklets-core": "^0.2.4",
    "typescript": "^5.3.0"
  },
  "devDependencies": {
    "@babel/core": "^7.20.0"
  },
  "private": true
}

VisionCamera Version

3.9.0

Target platforms

Android

Operating system

MacOS

Can you build the VisionCamera Example app?

Yes, I can successfully build the Example app here

Additional information

mrousavy commented 5 months ago

wrong template, this is not a build error.