Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Stuck at Task :app:connected{flavor name}DebugAndroidTest #1824

Closed
kittipongnvj opened this issue Oct 22, 2023 · 8 comments
Closed

Stuck at Task :app:connected{flavor name}DebugAndroidTest #1824

kittipongnvj opened this issue Oct 22, 2023 · 8 comments

Comments

@kittipongnvj
Copy link

Steps to reproduce

  1. set up by follow https://patrol.leancode.co/getting-started
  2. set flavor at pubspec
  3. run patrol test --target integration_test/{my test file name}_test.dart

Actual results

after waiting for > 20 minute still stuck at

Task :app:connectedDevDebugAndroidTest

I already explore at #1794 but have no luck

#1794 (comment) -> already change to patrol: ^2.4.0-dev.3 doesn't solve my issue so I change back to 2.3.1

Logs

....
   : > Task :app:createDevDebugApkListingFileRedirect UP-TO-DATE
        : > Task :app:mergeDevDebugAndroidTestJavaResource UP-TO-DATE
        : > Task :app:dexBuilderDevDebugAndroidTest
        : > Task :app:mergeProjectDexDevDebugAndroidTest UP-TO-DATE
        : > Task :app:packageDevDebugAndroidTest UP-TO-DATE
        : > Task :app:createDevDebugAndroidTestApkListingFileRedirect UP-TO-DATE
        : > Task :app:connectedDevDebugAndroidTest

Patrol version

patrol: ^2.3.1

Patrol Doctor output

Patrol Doctor output
Patrol CLI version: 2.2.1
Program adb found in /opt/homebrew/bin/adb
Env var $ANDROID_HOME set to /Users/tong/Library/Android/sdk
Program xcodebuild found in /usr/bin/xcodebuild
Program ideviceinstaller found in /opt/homebrew/bin/ideviceinstaller

Flutter Doctor output

Flutter Doctor output
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, 3.7.6, on macOS 13.5.1 22G90 darwin-arm64, locale en-TH)
[✓] Android toolchain - develop for Android devices (Android SDK version 33.0.1)
[✓] Xcode - develop for iOS and macOS (Xcode 14.2)
[✓] Chrome - develop for the web
[✓] Android Studio (version 2021.3)
[✓] VS Code (version 1.83.0)
[✓] Connected device (3 available)
[✓] HTTP Host Availability
@kittipongnvj
Copy link
Author

my build gradle

def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
    localPropertiesFile.withReader('UTF-8') { reader ->
        localProperties.load(reader)
    }
}

def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
    throw GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}

def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
    flutterVersionCode = '1'
}

def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
    flutterVersionName = '1.0'
}

apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

def keystoreProdProperties = new Properties()
def keystoreProdPropertiesFile = rootProject.file('key-prod.properties')
if (keystoreProdPropertiesFile.exists()) {
   keystoreProdProperties.load(new FileInputStream(keystoreProdPropertiesFile))
}

def keystoreDevProperties = new Properties()
def keystoreDevPropertiesFile = rootProject.file('key-dev.properties')
if (keystoreDevPropertiesFile.exists()) {
   keystoreDevProperties.load(new FileInputStream(keystoreDevPropertiesFile))
}


android {
    compileSdkVersion 33

    sourceSets {
        main.java.srcDirs += 'src/main/kotlin'
    }

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

    kotlinOptions {
        jvmTarget = '1.8'
    }

    defaultConfig {
        minSdkVersion 21
        targetSdkVersion 33
        versionCode flutterVersionCode.toInteger()
        versionName flutterVersionName
        ndk {
            // abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86_64' // need this for release
            abiFilters "armeabi", "x86", "armeabi-v7a", "arm64-v8a" ,"x86_64" // need this for dev 
        }

        testInstrumentationRunner "pl.leancode.patrol.PatrolJUnitRunner"
        testInstrumentationRunnerArguments clearPackageData: "true"
    }

    signingConfigs {
        prod {
            storeFile file(keystoreProdProperties['storeFile'])
            keyAlias keystoreProdProperties['keyAlias']
            keyPassword keystoreProdProperties['keyPassword']
            storePassword keystoreProdProperties['storePassword']
        }
        
        dev {
            storeFile file(keystoreDevProperties['storeFile'])
            keyAlias keystoreDevProperties['keyAlias']
            keyPassword keystoreDevProperties['keyPassword']
            storePassword keystoreDevProperties['storePassword']
        }
    }

    buildTypes {
        release {
            applicationVariants.all { variant ->
                variant.outputs.all { output ->
                    output.outputFileName = "app-release.apk"
                }
            }

            minifyEnabled false
            shrinkResources false
            debuggable false
            // proguardFiles(getDefaultProguardFile("proguard-android.txt"),"proguard-rules.pro")
        }

        debug {
            applicationVariants.all { variant ->
                variant.outputs.all { output ->
                    output.outputFileName = "app-dev-debug.apk"
                }
            }

           minifyEnabled false
           shrinkResources false
           debuggable true
        //    proguardFiles(getDefaultProguardFile("proguard-android.txt"),"proguard-rules.pro")
        }
    }


    flavorDimensions "app"

    productFlavors {
        emu {
            dimension "app"
            resValue "string", "app_name", "Wind training emu"
            applicationId "com.navyjone.wind.emu"
            signingConfig signingConfigs.dev
            // versionNameSuffix "--emu"
        }
        dev {
            dimension "app"
            resValue "string", "app_name", "Wind training dev"
            applicationId "com.navyjone.wind.dev"
            signingConfig signingConfigs.dev
            // versionNameSuffix "--dev"
        }

        prod {
            dimension "app"
            resValue "string", "app_name", "Wind training"
            applicationId "com.calcal.wind"
            signingConfig signingConfigs.prod
            // versionNameSuffix "--prod"
        }
    }
    lint {
        checkReleaseBuilds false
        disable 'InvalidPackage'
    }

    testOptions {
        execution "ANDROIDX_TEST_ORCHESTRATOR"
    }

    // namespace 'com.navyjone.wind.dev'
    namespace 'com.calcal.wind'
}

flutter {
    source '../..'
}

def billing_version = "5.1.0"
dependencies {
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava'    
    implementation "com.android.billingclient:billing:$billing_version"
    androidTestUtil "androidx.test:orchestrator:1.4.2"
}

apply plugin: 'com.google.gms.google-services'

@kittipongnvj
Copy link
Author

my pubspec

....
dev_dependencies:
  flutter_launcher_icons: ^0.10.0
  patrol: ^2.3.1
  test: ^1.17.8
  
  .....
patrol:
  app_name: My App
  flavor: dev
  android:
    package_name: com.navyjone.wind.dev
  ios:
    bundle_id: com.example.MyApp // do not concern this line

@bartekpacia
Copy link
Contributor

Hi, please share a logcat file.

@kittipongnvj
Copy link
Author

Log cat - only error

2023-10-22 20:35:04.817 22984-22984/? E/e.process.gapps: Not starting debugger since process cannot load the jdwp agent. 2023-10-22 20:35:05.014 22985-22985/? E/oid.apps.photos: Not starting debugger since process cannot load the jdwp agent. 2023-10-22 20:35:05.031 18842-22951/? E/SQLiteLog: (1) no such table: trigger_uris in "DELETE FROM trigger_uris WHERE app_id=?" 2023-10-22 20:35:05.116 18842-22951/? E/FA-SVC: Error deleting application data. appId, error: com.navyjone.wind.dev, android.database.sqlite.SQLiteException: no such table: trigger_uris (code 1 SQLITE_ERROR): , while compiling: DELETE FROM trigger_uris WHERE app_id=?: bhmj.w(:com.google.android.gms@[email protected] (190400-570218080):100) 2023-10-22 20:35:05.292 22642-22642/? E/fb4a.SlowAppComponent: 0ms: MqttServiceV2 instantiating… 2023-10-22 20:35:05.293 22642-22642/? E/fb4a.SlowAppComponent: Main thread was blocked for 92ms in the background starting with MqttServiceV2 2023-10-22 20:35:10.286 23121-23121/? E/gle.android.tts: Not starting debugger since process cannot load the jdwp agent. 2023-10-22 20:35:12.048 23073-23177/? E/AwarenessClientProvider: Account associated with identity was null 2023-10-22 20:35:12.082 23073-23177/? E/AwarenessRouterSyncMgr: Exception while syncing fences java.util.concurrent.ExecutionException: java.lang.IllegalStateException: Account associated with identity was null at aplb.o(PG:6) at aplb.get(PG:4) at appa.a(PG:1) at apnm.q(PG:2) at mio.run(PG:1) at skk.run(PG:1) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644) at sjq.run(PG:2) at java.lang.Thread.run(Thread.java:1012) at slb.run(PG:5) Caused by: java.lang.IllegalStateException: Account associated with identity was null at mhv.a(PG:3) at aogd.a(PG:3) at apld.c(PG:2) at aplf.run(PG:9) at skk.run(PG:1)  at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)  at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644)  at sjq.run(PG:2)  at java.lang.Thread.run(Thread.java:1012)  at slb.run(PG:5)  2023-10-22 20:35:13.066 572-619/? E/VerityUtils: Failed to measure fs-verity, errno 1: /data/app/~~zghC2KTjQAa44u8UklvX9g==/com.google.android.apps.youtube.music-OrhkQrnZHAfpa9CNfviGQQ==/base.apk 2023-10-22 20:35:13.666 23240-23240/? E/droid.deskclock: Not starting debugger since process cannot load the jdwp agent. 2023-10-22 20:35:13.877 22642-22642/? E/fb4a.SlowAppComponent: 0ms: BlueService instantiating… 2023-10-22 20:35:13.877 22642-22642/? E/fb4a.SlowAppComponent: Main thread was blocked for 197ms in the background starting with BlueService 2023-10-22 20:35:14.323 23073-23073/? E/YouTubeMusic: Trying to detachMediaView when it wasn't the most recent MediaView Setter 2023-10-22 20:35:14.381 23073-23185/? E/Widget.RecentlyPlayed: Filling bundle but recently played items are EMPTY. 2023-10-22 20:35:15.148 23284-23284/? E/.android.dialer: Not starting debugger since process cannot load the jdwp agent. 2023-10-22 20:35:15.227 23073-23161/? E/GoogleTagManager: Invalid macro: _gtm.loadEventEnabled 2023-10-22 20:35:15.466 23073-23299/? E/GoogleTagManager: Invalid macro: _gtm.loadEventEnabled 2023-10-22 20:35:16.278 23284-23312/? E/DialerDialerBaseApplication: com.android.dialer.DialerBaseApplication.getResources:47 getResources() called before resources are initialized sne: LARGE at bwb.getResources(PG:6) at nlz.a(PG:1) at nlm.h(Unknown Source:0) at noa.d(PG:8) at nod.j(PG:5) at nod.handleMessage(PG:60) at android.os.Handler.dispatchMessage(Handler.java:102) at nvo.b(Unknown Source:0) at nvo.dispatchMessage(Unknown Source:0) at android.os.Looper.loopOnce(Looper.java:201) at android.os.Looper.loop(Looper.java:288) at android.os.HandlerThread.run(HandlerThread.java:67) Caused by: java.lang.IllegalStateException: Resources are not initialized yet. Do not call getResource() in constructors of injected classes at tsp.s(Unknown Source:7) at bwb.getResources(PG:2) at nlz.a(PG:1)  at nlm.h(Unknown Source:0)  at noa.d(PG:8)  at nod.j(PG:5)  at nod.handleMessage(PG:60)  at android.os.Handler.dispatchMessage(Handler.java:102)  at nvo.b(Unknown Source:0)  at nvo.dispatchMessage(Unknown Source:0)  at android.os.Looper.loopOnce(Looper.java:201)  at android.os.Looper.loop(Looper.java:288)  at android.os.HandlerThread.run(HandlerThread.java:67)  2023-10-22 20:35:18.417 23284-23317/? E/PhenotypeFlagCommitter: Retrieving snapshot for com.google.android.dialer failed java.util.concurrent.TimeoutException: Timed out waiting for Task at ohb.M(PG:7) at nyg.d(PG:2) at nyg.c(PG:2) at gpx.call(PG:122) at syg.call(PG:7) at tar.a(Unknown Source:2) at szv.run(PG:3) at tas.run(Unknown Source:4) at odz.run(PG:1) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644) at odt.run(PG:19) at oaz.run(PG:55) at java.lang.Thread.run(Thread.java:1012) at oec.run(PG:6) 2023-10-22 20:35:19.153 22642-22779/? E/ActivityThread: Failed to find provider info for com.android.launcher3.cornermark.unreadbadge 2023-10-22 20:35:19.610 23348-23348/? E/android.youtube: Not starting debugger since process cannot load the jdwp agent. 2023-10-22 20:35:20.620 22642-22642/? E/fb4a.SlowAppComponent: 0ms: FacebookPushServerFinishNotifiedLollipopService instantiating… 2023-10-22 20:35:20.621 22642-22642/? E/fb4a.SlowAppComponent: Main thread was blocked for 22ms in the background starting with FacebookPushServerFinishNotifiedLollipopService 2023-10-22 20:35:21.786 572-619/? E/VerityUtils: Failed to measure fs-verity, errno 1: /data/app/~~o6MIgokRWVsPrFZ0oymXlw==/com.google.android.youtube-JPQVNGE203tScclhc-yQfw==/base.apk 2023-10-22 20:35:22.642 22642-22642/? E/fb4a.SlowAppComponent: 0ms: RescheduleReceiver instantiating… 2023-10-22 20:35:22.643 22642-22642/? E/fb4a.SlowAppComponent: Main thread was blocked for 71ms in the background starting with RescheduleReceiver 2023-10-22 20:35:24.877 23501-23501/? E/.android.chrome: Not starting debugger since process cannot load the jdwp agent. 2023-10-22 20:35:24.924 22642-22642/? E/fb4a.SlowAppComponent: 0ms: RescheduleReceiver instantiating… 2023-10-22 20:35:24.932 22642-22642/? E/fb4a.SlowAppComponent: Main thread was blocked for 64ms in the background starting with RescheduleReceiver 2023-10-22 20:35:26.294 21856-21873/? E/id.gms.unstable: Attempt to load writable dex file: /data/user/0/com.google.android.gms/app_dg_cache/D00BD49B8B132E859478AB49736D89313549ED0A/the.apk 2023-10-22 20:35:26.602 23548-23548/? E/ding:background: Not starting debugger since process cannot load the jdwp agent. 2023-10-22 20:35:30.798 23587-23587/? E/ileged_process0: Not starting debugger since process cannot load the jdwp agent. 2023-10-22 20:35:34.303 23632-23632/? E/libc: SetHeapTaggingLevel: re-enabling tagging after it was disabled is not supported 2023-10-22 20:35:34.438 23632-23632/? E/ocessService0:0: Not starting debugger since process cannot load the jdwp agent. 2023-10-22 20:35:35.718 23661-23661/? E/oid.documentsui: Not starting debugger since process cannot load the jdwp agent. 2023-10-22 20:35:36.661 23697-23697/? E/externalstorage: Not starting debugger since process cannot load the jdwp agent. 2023-10-22 20:35:36.829 4485-7708/? E/chlm: Phenotype API error. Event # erpo@b8163759, EventCode: 7 [CONTEXT service_id=51 ] chkb: 29505: No config packages for log source, or config package not registered at chmk.b(:com.google.android.gms@[email protected] (190400-570218080):79) at chmh.g(:com.google.android.gms@[email protected] (190400-570218080):3) at chlm.e(:com.google.android.gms@[email protected] (190400-570218080):18) at chlm.f(:com.google.android.gms@[email protected] (190400-570218080):11) at bdmf.fb(:com.google.android.gms@[email protected] (190400-570218080):1) at bdmq.run(:com.google.android.gms@[email protected] (190400-570218080):100) at dsgn.run(:com.google.android.gms@[email protected] (190400-570218080):13) at ahzo.c(:com.google.android.gms@[email protected] (190400-570218080):50) at ahzo.run(:com.google.android.gms@[email protected] (190400-570218080):76) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644) at aiet.run(:com.google.android.gms@[email protected] (190400-570218080):8) at java.lang.Thread.run(Thread.java:1012) 2023-10-22 20:35:37.390 23501-23501/? E/cr_BTSPrefs: No data found for task id: 53 2023-10-22 20:35:37.390 23501-23501/? E/cr_BkgrdTaskScheduler: Task cannot be canceled because no data was found instorage or data was invalid 2023-10-22 20:35:38.924 23732-23732/? E/d.process.media: Not starting debugger since process cannot load the jdwp agent. 2023-10-22 20:35:39.696 23748-23748/? E/libc: SetHeapTaggingLevel: re-enabling tagging after it was disabled is not supported 2023-10-22 20:35:39.712 23748-23748/? E/ocessService0:1: Not starting debugger since process cannot load the jdwp agent. 2023-10-22 20:35:39.718 23749-23749/? E/libc: SetHeapTaggingLevel: re-enabling tagging after it was disabled is not supported 2023-10-22 20:35:39.727 23749-23749/? E/ocessService0:2: Not starting debugger since process cannot load the jdwp agent. 2023-10-22 20:35:40.283 23777-23777/? E/.adservices.api: Not starting debugger since process cannot load the jdwp agent. 2023-10-22 20:35:42.146 23777-23777/? E/adservices: Topics API is disabled 2023-10-22 20:35:44.149 389-389/? E/[email protected]: Failed to getEnergyData 2023-10-22 20:35:45.027 23815-23856/? E/AwarenessClientProvider: Account associated with identity was null 2023-10-22 20:35:45.173 23815-23856/? E/AwarenessRouterSyncMgr: Exception while syncing fences java.util.concurrent.ExecutionException: java.lang.IllegalStateException: Account associated with identity was null at aplb.o(PG:6) at aplb.get(PG:4) at appa.a(PG:1) at apnm.q(PG:2) at mio.run(PG:1) at skk.run(PG:1) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644) at sjq.run(PG:2) at java.lang.Thread.run(Thread.java:1012) at slb.run(PG:5) Caused by: java.lang.IllegalStateException: Account associated with identity was null at mhv.a(PG:3) at aogd.a(PG:3) at apld.c(PG:2) at aplf.run(PG:9) at skk.run(PG:1)  at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)  at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644)  at sjq.run(PG:2)  at java.lang.Thread.run(Thread.java:1012)  at slb.run(PG:5)  2023-10-22 20:35:45.984 572-619/? E/VerityUtils: Failed to measure fs-verity, errno 1: /data/app/~~zghC2KTjQAa44u8UklvX9g==/com.google.android.apps.youtube.music-OrhkQrnZHAfpa9CNfviGQQ==/base.apk 2023-10-22 20:35:46.217 23815-23815/? E/YouTubeMusic: Trying to detachMediaView when it wasn't the most recent MediaView Setter 2023-10-22 20:35:46.231 23815-23850/? E/Widget.RecentlyPlayed: Filling bundle but recently played items are EMPTY. 2023-10-22 20:35:46.583 23815-23859/? E/GoogleTagManager: Invalid macro: _gtm.loadEventEnabled 2023-10-22 20:35:46.739 23815-23935/? E/GoogleTagManager: Invalid macro: _gtm.loadEventEnabled 2023-10-22 20:35:50.913 23947-23947/? E/d.process.acore: Not starting debugger since process cannot load the jdwp agent. 2023-10-22 20:35:51.916 478-503/? E/mediaserver: unlinkToDeath: removed reference to death recipient but unlink failed. 2023-10-22 20:35:51.929 478-503/? E/IPCThreadState: attemptIncStrongHandle(2): Not supported 2023-10-22 20:36:13.168 24021-24021/? E/facebook.katana: Not starting debugger since process cannot load the jdwp agent. 2023-10-22 20:36:16.538 24021-24043/? E/HeliumCrashReporter: Pending crash path /data/data/com.facebook.katana/cache/webview_embedded/Helium Crashpad/pending/ is not a directory 2023-10-22 20:36:18.049 24021-24042/? E/fb4a.UltralightMultiBind: Null item returned while injecting bindingId 8680 2023-10-22 20:36:18.831 24021-24021/? E/fb4a.SlowAppComponent: 0ms: FacebookApplication instantiating… 2023-10-22 20:36:18.848 24021-24021/? E/fb4a.SlowAppComponent: Main thread was blocked for 5087ms in the background starting with FacebookApplication 2023-10-22 20:36:20.480 12187-12300/? E/LocationReporter: locationReporter grpc failed io.grpc.StatusException: UNKNOWN at io.grpc.f.h.a(PG:2) at com.google.apps.tiktok.i.ab.a(PG:1) at com.google.frameworks.client.data.android.h.af.h(PG:9) at com.google.frameworks.client.data.android.h.af.f(PG:3) at com.google.frameworks.client.data.android.h.af.a(PG:1) at com.google.frameworks.client.data.android.i.d.run(PG:1) at com.google.frameworks.client.data.android.i.e.e(PG:4) at com.google.frameworks.client.data.android.i.e.a(PG:1) at com.google.frameworks.client.data.android.h.y.run(PG:1) at com.google.frameworks.client.data.android.h.q.run(PG:1) at com.google.common.util.concurrent.dq.run(PG:4) at com.google.common.util.concurrent.bg.execute(PG:1) at com.google.frameworks.client.data.android.h.ab.execute(PG:1) at com.google.common.util.concurrent.dr.execute(PG:5) at com.google.frameworks.client.data.android.h.m.execute(PG:1) at com.google.frameworks.client.data.android.h.ad.e(PG:2) at com.google.frameworks.client.data.android.h.aj.e(PG:10) at io.grpc.ba.e(PG:1) at com.google.apps.tiktok.i.z.run(PG:7) at com.google.apps.tiktok.tracing.et.run(PG:1) at com.google.apps.tiktok.i.aa.e(PG:2) at io.grpc.f.l.b(PG:9) at io.grpc.f.l.a(PG:1) at kotlinx.coroutines.e.b.a(PG:1) at kotlinx.coroutines.aw.a(PG:2) at io.grpc.f.m.b(PG:3) at io.grpc.f.m.a(PG:1) at kotlinx.coroutines.b.da.b(PG:1) at kotlinx.coroutines.b.b.mb(PG:5) at io.grpc.f.s.b(PG:3) at io.grpc.f.s.a(PG:1) at kotlinx.coroutines.b.da.b(PG:1) at kotlinx.coroutines.b.b.mb(PG:5) at kotlinx.coroutines.b.bt.d(PG:3) at io.grpc.f.n.d(PG:3) at com.google.at.k.b.b.a.k.b(PG:13) at com.google.android.apps.search.googleapp.notifications.accountsettings.r.c(PG:7) at com.google.android.apps.search.googleapp.notifications.accountsettings.m.b(PG:1) at i.c.b.a.a.h(PG:4) at kotlinx.coroutines.bk.run(PG:14) at com.google.apps.tiktok.coroutines.g.run(PG:1) at com.google.android.libraries.i.y.run(PG:1) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644) at com.google.android.libraries.i.g.run(PG:2) at java.lang.Thread.run(Thread.java:1012) at com.google.android.libraries.i.ah.run(PG:5) Caused by: java.lang.IllegalStateException: Used non-google account without enabling API Key fallback at com.google.common.base.bb.q(PG:1) at com.google.frameworks.client.data.android.a.c.b(PG:15) at com.google.frameworks.client.data.android.h.ad.k(PG:4) at com.google.frameworks.client.data.android.h.t.run(Unknown Source:4) at com.google.apps.tiktok.tracing.et.run(PG:1) at com.google.frameworks.client.data.android.h.q.run(PG:1) at com.google.common.util.concurrent.dp.run(PG:1) at com.google.common.util.concurrent.dq.run(PG:4) at com.google.common.util.concurrent.bg.execute(PG:1) at com.google.frameworks.client.data.android.h.ab.execute(PG:1) at com.google.common.util.concurrent.dr.execute(PG:5) at com.google.frameworks.client.data.android.h.m.execute(PG:1) at com.google.frameworks.client.data.android.h.ad.e(PG:2) at com.google.frameworks.client.data.android.h.aj.e(PG:10) at com.google.frameworks.client.data.android.h.ad.q(PG:5) at com.google.frameworks.client.data.android.h.ad.k(PG:12) at com.google.frameworks.client.data.android.h.t.run(Unknown Source:4) at com.google.apps.tiktok.tracing.et.run(PG:1) at com.google.frameworks.client.data.android.h.q.run(PG:1) at com.google.common.util.concurrent.dp.run(PG:1) at com.google.common.util.concurrent.dq.run(PG:4) at com.google.common.util.concurrent.bg.execute(PG:1) at com.google.frameworks.client.data.android.h.ab.execute(PG:1) at com.google.common.util.concurrent.dr.execute(PG:5) at com.google.frameworks.client.data.android.h.m.execute(PG:1) at com.google.frameworks.client.data.android.h.ad.e(PG:2) at com.google.frameworks.client.data.android.h.aj.e(PG:10) at com.google.frameworks.client.data.android.g.i.e(PG:4) 2023-10-22 20:36:20.483 12187-12300/? E/LocationReporter: at com.google.frameworks.client.data.android.h.ad.q(PG:5) at com.google.frameworks.client.data.android.h.ad.k(PG:12) at com.google.frameworks.client.data.android.h.t.run(Unknown Source:4) at com.google.apps.tiktok.tracing.et.run(PG:1) at com.google.frameworks.client.data.android.h.q.run(PG:1) at com.google.common.util.concurrent.dp.run(PG:1) at com.google.common.util.concurrent.dq.run(PG:4) at com.google.common.util.concurrent.bg.execute(PG:1) at com.google.frameworks.client.data.android.h.ab.execute(PG:1) at com.google.common.util.concurrent.dr.execute(PG:5) at com.google.frameworks.client.data.android.h.m.execute(PG:1) at com.google.frameworks.client.data.android.h.ad.e(PG:2) at com.google.frameworks.client.data.android.h.aj.e(PG:10) at com.google.frameworks.client.data.android.h.ad.q(PG:5) at com.google.frameworks.client.data.android.h.ad.k(PG:12) at com.google.frameworks.client.data.android.h.t.run(Unknown Source:4) at com.google.apps.tiktok.tracing.et.run(PG:1) at com.google.frameworks.client.data.android.h.q.run(PG:1) at com.google.common.util.concurrent.dp.run(PG:1) at com.google.common.util.concurrent.dq.run(PG:4) at com.google.common.util.concurrent.bg.execute(PG:1) at com.google.frameworks.client.data.android.h.ab.execute(PG:1) at com.google.common.util.concurrent.dr.execute(PG:5) at com.google.frameworks.client.data.android.h.m.execute(PG:1) at com.google.frameworks.client.data.android.h.ad.e(PG:2) at com.google.frameworks.client.data.android.h.aj.e(PG:10) at com.google.frameworks.client.data.android.h.ad.q(PG:5) at com.google.frameworks.client.data.android.h.ad.k(PG:12) at com.google.frameworks.client.data.android.h.t.run(Unknown Source:4) at com.google.apps.tiktok.tracing.et.run(PG:1) at com.google.frameworks.client.data.android.h.q.run(PG:1) at com.google.common.util.concurrent.dp.run(PG:1) at com.google.common.util.concurrent.dq.run(PG:4) at com.google.common.util.concurrent.bg.execute(PG:1) at com.google.frameworks.client.data.android.h.ab.execute(PG:1) at com.google.common.util.concurrent.dr.execute(PG:5) at com.google.frameworks.client.data.android.h.m.execute(PG:1) at com.google.frameworks.client.data.android.h.ad.e(PG:2) at com.google.frameworks.client.data.android.h.aj.e(PG:10) at com.google.frameworks.client.data.android.h.ad.q(PG:5) at com.google.frameworks.client.data.android.h.ad.g(PG:15) at com.google.frameworks.client.data.android.h.p.run(Unknown Source:4) at com.google.apps.tiktok.tracing.et.run(PG:1) ... 38 more 2023-10-22 20:36:23.121 24021-24116/? E/HiddenApis2: Failed to init DecodeJObjectFuncPtr 2023-10-22 20:36:23.816 24021-24021/? E/fb4a.SlowAppComponent: 0ms: MqttServiceV2 instantiating… 2023-10-22 20:36:23.816 24021-24021/? E/fb4a.SlowAppComponent: Main thread was blocked for 111ms in the background starting with MqttServiceV2 2023-10-22 20:36:24.953 24021-24076/? E/ActivityThread: Failed to find provider info for com.android.launcher3.cornermark.unreadbadge 2023-10-22 20:36:35.729 24240-24240/? E/libc: SetHeapTaggingLevel: re-enabling tagging after it was disabled is not supported 2023-10-22 20:36:35.759 24240-24240/? E/ocessService0:3: Not starting debugger since process cannot load the jdwp agent. 2023-10-22 20:36:36.651 24260-24260/? E/libc: SetHeapTaggingLevel: re-enabling tagging after it was disabled is not supported 2023-10-22 20:36:36.660 24260-24260/? E/ocessService0:4: Not starting debugger since process cannot load the jdwp agent. 2023-10-22 20:36:50.540 24286-24286/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.565 220-220/? E/SELinux: avc: denied { find } for pid=24286 uid=2000 name=android.service.gatekeeper.IGateKeeperService scontext=u:r:shell:s0 tcontext=u:object_r:gatekeeper_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:50.567 24286-24286/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.577 24286-24286/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.578 24286-24286/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.582 24286-24286/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.592 24286-24286/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.594 24286-24286/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.595 24286-24286/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.597 24286-24286/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.598 24286-24286/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.598 220-220/? E/SELinux: avc: denied { find } for pid=24286 uid=2000 name=dnsresolver scontext=u:r:shell:s0 tcontext=u:object_r:dnsresolver_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:50.604 24286-24286/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.608 24286-24286/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.612 220-220/? E/SELinux: avc: denied { find } for pid=24286 uid=2000 name=incident scontext=u:r:shell:s0 tcontext=u:object_r:incident_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:50.618 220-220/? E/SELinux: avc: denied { find } for pid=24286 uid=2000 name=installd scontext=u:r:shell:s0 tcontext=u:object_r:installd_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:50.625 24286-24286/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.627 24286-24286/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.628 220-220/? E/SELinux: avc: denied { find } for pid=24286 uid=2000 name=mdns scontext=u:r:shell:s0 tcontext=u:object_r:mdns_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:50.651 24286-24286/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.655 220-220/? E/SELinux: avc: denied { find } for pid=24286 uid=2000 name=netd scontext=u:r:shell:s0 tcontext=u:object_r:netd_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:50.660 24286-24286/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.668 24286-24286/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.671 24286-24286/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.677 24286-24286/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.686 24286-24286/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.697 220-220/? E/SELinux: avc: denied { find } for pid=24286 uid=2000 name=suspend_control scontext=u:r:shell:s0 tcontext=u:object_r:system_suspend_control_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:50.697 220-220/? E/SELinux: avc: denied { find } for pid=24286 uid=2000 name=suspend_control_internal scontext=u:r:shell:s0 tcontext=u:object_r:system_suspend_control_internal_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:50.699 24286-24286/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.703 24286-24286/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.719 220-220/? E/SELinux: avc: denied { find } for pid=24286 uid=2000 name=vold scontext=u:r:shell:s0 tcontext=u:object_r:vold_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:50.761 24290-24290/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.774 220-220/? E/SELinux: avc: denied { find } for pid=24290 uid=2000 name=android.service.gatekeeper.IGateKeeperService scontext=u:r:shell:s0 tcontext=u:object_r:gatekeeper_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:50.778 24290-24290/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.790 24290-24290/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.793 24290-24290/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.796 24290-24290/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.808 24290-24290/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.810 24290-24290/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.810 24290-24290/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.813 24290-24290/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.814 24290-24290/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.815 220-220/? E/SELinux: avc: denied { find } for pid=24290 uid=2000 name=dnsresolver scontext=u:r:shell:s0 tcontext=u:object_r:dnsresolver_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:50.819 24290-24290/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.839 24290-24290/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.842 220-220/? E/SELinux: avc: denied { find } for pid=24290 uid=2000 name=incident scontext=u:r:shell:s0 tcontext=u:object_r:incident_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:50.845 220-220/? E/SELinux: avc: denied { find } for pid=24290 uid=2000 name=installd scontext=u:r:shell:s0 tcontext=u:object_r:installd_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:50.854 24290-24290/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.856 24290-24290/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.857 220-220/? E/SELinux: avc: denied { find } for pid=24290 uid=2000 name=mdns scontext=u:r:shell:s0 tcontext=u:object_r:mdns_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:50.866 24290-24290/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.869 220-220/? E/SELinux: avc: denied { find } for pid=24290 uid=2000 name=netd scontext=u:r:shell:s0 tcontext=u:object_r:netd_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:50.874 24290-24290/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.884 24290-24290/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.887 24290-24290/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.894 24290-24290/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.938 24290-24290/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.955 220-220/? E/SELinux: avc: denied { find } for pid=24290 uid=2000 name=suspend_control scontext=u:r:shell:s0 tcontext=u:object_r:system_suspend_control_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:50.956 220-220/? E/SELinux: avc: denied { find } for pid=24290 uid=2000 name=suspend_control_internal scontext=u:r:shell:s0 tcontext=u:object_r:system_suspend_control_internal_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:50.957 24290-24290/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.960 24290-24290/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:50.972 220-220/? E/SELinux: avc: denied { find } for pid=24290 uid=2000 name=vold scontext=u:r:shell:s0 tcontext=u:object_r:vold_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:51.111 24298-24298/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.128 220-220/? E/SELinux: avc: denied { find } for pid=24298 uid=2000 name=android.service.gatekeeper.IGateKeeperService scontext=u:r:shell:s0 tcontext=u:object_r:gatekeeper_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:51.130 24298-24298/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.138 24298-24298/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.140 24298-24298/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.142 24298-24298/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.150 24298-24298/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.152 24298-24298/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.152 24298-24298/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.156 24298-24298/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.157 24298-24298/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.158 220-220/? E/SELinux: avc: denied { find } for pid=24298 uid=2000 name=dnsresolver scontext=u:r:shell:s0 tcontext=u:object_r:dnsresolver_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:51.161 24298-24298/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.164 24298-24298/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.167 220-220/? E/SELinux: avc: denied { find } for pid=24298 uid=2000 name=incident scontext=u:r:shell:s0 tcontext=u:object_r:incident_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:51.170 220-220/? E/SELinux: avc: denied { find } for pid=24298 uid=2000 name=installd scontext=u:r:shell:s0 tcontext=u:object_r:installd_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:51.177 24298-24298/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.179 24298-24298/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.180 220-220/? E/SELinux: avc: denied { find } for pid=24298 uid=2000 name=mdns scontext=u:r:shell:s0 tcontext=u:object_r:mdns_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:51.189 24298-24298/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.192 220-220/? E/SELinux: avc: denied { find } for pid=24298 uid=2000 name=netd scontext=u:r:shell:s0 tcontext=u:object_r:netd_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:51.196 24298-24298/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.206 24298-24298/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.209 24298-24298/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.214 24298-24298/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.221 24298-24298/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.230 220-220/? E/SELinux: avc: denied { find } for pid=24298 uid=2000 name=suspend_control scontext=u:r:shell:s0 tcontext=u:object_r:system_suspend_control_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:51.230 220-220/? E/SELinux: avc: denied { find } for pid=24298 uid=2000 name=suspend_control_internal scontext=u:r:shell:s0 tcontext=u:object_r:system_suspend_control_internal_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:51.231 24298-24298/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.235 24298-24298/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.247 220-220/? E/SELinux: avc: denied { find } for pid=24298 uid=2000 name=vold scontext=u:r:shell:s0 tcontext=u:object_r:vold_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:51.286 24300-24300/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.306 220-220/? E/SELinux: avc: denied { find } for pid=24300 uid=2000 name=android.service.gatekeeper.IGateKeeperService scontext=u:r:shell:s0 tcontext=u:object_r:gatekeeper_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:51.307 24300-24300/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.314 24300-24300/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.316 24300-24300/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.319 24300-24300/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.328 24300-24300/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.329 24300-24300/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.330 24300-24300/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.333 24300-24300/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.333 24300-24300/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.335 220-220/? E/SELinux: avc: denied { find } for pid=24300 uid=2000 name=dnsresolver scontext=u:r:shell:s0 tcontext=u:object_r:dnsresolver_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:51.339 24300-24300/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.342 24300-24300/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.344 220-220/? E/SELinux: avc: denied { find } for pid=24300 uid=2000 name=incident scontext=u:r:shell:s0 tcontext=u:object_r:incident_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:51.348 220-220/? E/SELinux: avc: denied { find } for pid=24300 uid=2000 name=installd scontext=u:r:shell:s0 tcontext=u:object_r:installd_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:51.355 24300-24300/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.356 24300-24300/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.357 220-220/? E/SELinux: avc: denied { find } for pid=24300 uid=2000 name=mdns scontext=u:r:shell:s0 tcontext=u:object_r:mdns_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:51.367 24300-24300/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.370 220-220/? E/SELinux: avc: denied { find } for pid=24300 uid=2000 name=netd scontext=u:r:shell:s0 tcontext=u:object_r:netd_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:51.374 24300-24300/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.382 24300-24300/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.384 24300-24300/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.391 24300-24300/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.397 24300-24300/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.407 220-220/? E/SELinux: avc: denied { find } for pid=24300 uid=2000 name=suspend_control scontext=u:r:shell:s0 tcontext=u:object_r:system_suspend_control_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:51.407 220-220/? E/SELinux: avc: denied { find } for pid=24300 uid=2000 name=suspend_control_internal scontext=u:r:shell:s0 tcontext=u:object_r:system_suspend_control_internal_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:51.408 24300-24300/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.412 24300-24300/? E/Parcel: Reading a NULL string not supported here. 2023-10-22 20:36:51.425 220-220/? E/SELinux: avc: denied { find } for pid=24300 uid=2000 name=vold scontext=u:r:shell:s0 tcontext=u:object_r:vold_service:s0 tclass=service_manager permissive=0 2023-10-22 20:36:51.783 24311-24311/? E/ndroid.keychain: Not starting debugger since process cannot load the jdwp agent. 2023-10-22 20:36:52.630 18842-24366/? E/SQLiteLog: (1) no such table: trigger_uris in "DELETE FROM trigger_uris WHERE app_id=?" 2023-10-22 20:36:52.659 18842-24366/? E/FA-SVC: Error deleting application data. appId, error: com.navyjone.wind.dev.test, android.database.sqlite.SQLiteException: no such table: trigger_uris (code 1 SQLITE_ERROR): , while compiling: DELETE FROM trigger_uris WHERE app_id=?: bhmj.w(:com.google.android.gms@[email protected] (190400-570218080):100) 2023-10-22 20:36:53.123 24368-24368/? E/oid.documentsui: Not starting debugger since process cannot load the jdwp agent. 2023-10-22 20:36:54.041 23777-23777/? E/adservices: Topics API is disabled 2023-10-22 20:37:44.078 389-389/? E/[email protected]: Failed to getEnergyData 2023-10-22 20:37:53.964 472-483/? E/installd: Couldn't opendir /data/app/vmdl1007269325.tmp: No such file or directory 2023-10-22 20:37:53.966 472-483/? E/installd: Failed to delete /data/app/vmdl1007269325.tmp: No such file or directory 2023-10-22 20:37:55.078 472-483/? E/installd: Couldn't opendir /data/app/vmdl2091529613.tmp: No such file or directory 2023-10-22 20:37:55.078 472-483/? E/installd: Failed to delete /data/app/vmdl2091529613.tmp: No such file or directory 2023-10-22 20:37:55.442 572-619/? E/VerityUtils: Failed to measure fs-verity, errno 1: /data/app/~~M5wE3UHd3nkDbljBUojVbA==/androidx.test.orchestrator-N-x0vmw54eM_7qs2ZhZD4g==/base.apk 2023-10-22 20:37:55.494 572-619/? E/VerityUtils: Failed to measure fs-verity, errno 1: /data/app/~~M5wE3UHd3nkDbljBUojVbA==/androidx.test.orchestrator-N-x0vmw54eM_7qs2ZhZD4g==/base.apk 2023-10-22 20:37:55.592 572-619/? E/VerityUtils: Failed to measure fs-verity, errno 1: /data/app/~~qCHgSOu0bbJwiIY7pbJlHA==/androidx.test.services-0or0qspH4_NZMdgJfa7T9Q==/base.apk 2023-10-22 20:37:55.608 472-483/? E/installd: Couldn't opendir /data/app/vmdl2000207239.tmp: No such file or directory 2023-10-22 20:37:55.608 472-483/? E/installd: Failed to delete /data/app/vmdl2000207239.tmp: No such file or directory 2023-10-22 20:37:55.797 24552-24552/? E/ackageinstaller: Not starting debugger since process cannot load the jdwp agent. 2023-10-22 20:37:55.831 572-619/? E/VerityUtils: Failed to measure fs-verity, errno 1: /data/app/~~qCHgSOu0bbJwiIY7pbJlHA==/androidx.test.services-0or0qspH4_NZMdgJfa7T9Q==/base.apk 2023-10-22 20:37:56.284 572-619/? E/VerityUtils: Failed to measure fs-verity, errno 1: /data/app/~~28XqgHJCKnWKxGjxOpYwDw==/com.navyjone.wind.dev.test-S-Y9PMupy7qHVU1Hon6QUQ==/base.apk 2023-10-22 20:37:59.364 472-483/? E/installd: Couldn't opendir /data/app/vmdl1553193988.tmp: No such file or directory 2023-10-22 20:37:59.364 472-483/? E/installd: Failed to delete /data/app/vmdl1553193988.tmp: No such file or directory 2023-10-22 20:38:00.906 572-619/? E/VerityUtils: Failed to measure fs-verity, errno 1: /data/app/~~DfTtYwH1iQ3HrbWIfDaArQ==/com.navyjone.wind.dev-4i6w0qDwa5WyT8yw0KGFWg==/base.apk 2023-10-22 20:38:01.110 18842-18931/? E/fdlu: *~*~*~ Previous channel {0} was not shutdown properly!!! ~*~*~* Make sure to call shutdown()/shutdownNow() and wait until awaitTermination() returns true. java.lang.RuntimeException: ManagedChannel allocation site at fdlt.(:com.google.android.gms@[email protected] (190400-570218080):21) at fdlu.(:com.google.android.gms@[email protected] (190400-570218080):10) at fdls.a(:com.google.android.gms@[email protected] (190400-570218080):209) at fddr.a(:com.google.android.gms@[email protected] (190400-570218080):5) at ahub.F(:com.google.android.gms@[email protected] (190400-570218080):342) at ahub.f(:com.google.android.gms@[email protected] (190400-570218080):5) at coxf.a(:com.google.android.gms@[email protected] (190400-570218080):39) at cowp.c(:com.google.android.gms@[email protected] (190400-570218080):8) at cowp.a(:com.google.android.gms@[email protected] (190400-570218080):3) at aevc.run(:com.google.android.gms@[email protected] (190400-570218080):5) at ahzo.c(:com.google.android.gms@[email protected] (190400-570218080):50) at ahzo.run(:com.google.android.gms@[email protected] (190400-570218080):76) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644) at aiet.run(:com.google.android.gms@[email protected] (190400-570218080):8) at java.lang.Thread.run(Thread.java:1012) 2023-10-22 20:38:08.202 4485-24529/? E/GmsConnectionFactory: UID for network attribution might be misset for tag 536871943 [CONTEXT service_id=39 ] duwx: FULL at a.O(:com.google.android.gms@[email protected] (190400-570218080):9) at auhd.a(:com.google.android.gms@[email protected] (190400-570218080):148) at axjw.c(:com.google.android.gms@[email protected] (190400-570218080):119) at axjm.d(:com.google.android.gms@[email protected] (190400-570218080):11) at axjr.a(:com.google.android.gms@[email protected] (190400-570218080):4) at axjm.b(:com.google.android.gms@[email protected] (190400-570218080):86) at axjm.execute(:com.google.android.gms@[email protected] (190400-570218080):8) at axjm.execute(:com.google.android.gms@[email protected] (190400-570218080):5) at avoy.h(:com.google.android.gms@[email protected] (190400-570218080):514) at avos.run(:com.google.android.gms@[email protected] (190400-570218080):13) at ahzo.c(:com.google.android.gms@[email protected] (190400-570218080):50) at ahzo.run(:com.google.android.gms@[email protected] (190400-570218080):76) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:644) at aiet.run(:com.google.android.gms@[email protected] (190400-570218080):8) at java.lang.Thread.run(Thread.java:1012) 2023-10-22 20:38:15.007 368-436/? E/[email protected]: device/generic/goldfish/audio/stream_out.cpp:updateSourceMetadata:378 failure: Result::NOT_SUPPORTED 2023-10-22 20:38:15.064 368-436/? E/[email protected]: device/generic/goldfish/audio/stream_out.cpp:updateSourceMetadata:378 failure: Result::NOT_SUPPORTED 2023-10-22 20:38:21.341 368-436/? E/[email protected]: device/generic/goldfish/audio/stream_out.cpp:updateSourceMetadata:378 failure: Result::NOT_SUPPORTED 2023-10-22 20:38:32.114 24892-24892/? E/externalstorage: Not starting debugger since process cannot load the jdwp agent. 2023-10-22 20:39:44.080 389-389/? E/[email protected]: Failed to getEnergyData

@kittipongnvj
Copy link
Author

logcat --verbose.zip

@kittipongnvj
Copy link
Author

logcat --error.txt.zip

@bartekpacia
Copy link
Contributor

Please provide a minimal, reproducible sample.

Otherwise we cannot help you and the issue will be closed.

@bartekpacia
Copy link
Contributor

Closing because of inactivity.

Feel free to open a new issue with all the required information provided, including a minimal, reproducible sample.

@bartekpacia bartekpacia closed this as not planned Won't fix, can't repro, duplicate, stale Nov 5, 2023
@leancodepl leancodepl locked and limited conversation to collaborators Nov 5, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants