Hi. I’m seeing this crash popping up a lot in my c...
# android
t
Hi. I’m seeing this crash popping up a lot in my crashlytic board. Does anyone having the same issue? Crash happened mostly in background state
Copy code
Fatal Exception: java.lang.IllegalStateException: Not implemented
       at androidx.work.CoroutineWorker.getForegroundInfo$suspendImpl(CoroutineWorker.java:100)
       at androidx.work.CoroutineWorker.getForegroundInfo(CoroutineWorker.java:6)
       at androidx.work.CoroutineWorker$getForegroundInfoAsync$1.invokeSuspend(CoroutineWorker.kt:134)
       at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:33)
       at kotlinx.coroutines.DispatchedTask.run(DispatchedTask.kt:106)
       at kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(CoroutineScheduler.java:571)
       at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(CoroutineScheduler.kt:750)
       at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker(CoroutineScheduler.kt:678)
       at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run(CoroutineScheduler.kt:665)
My work manager dependency is
Copy code
implementation 'androidx.hilt:hilt-work:1.0.0'
    kapt 'androidx.hilt:hilt-compiler:1.0.0'
    implementation "androidx.work:work-runtime-ktx:2.7.1"
😶 2
126 Views