Search code examples
androidandroid-workmanager

How do I import androidx.work.WorkManager?


Can't import androidx.work.WorkManager. Working with Studio 3.4

enter image description here


Solution

  • Just add this and it should work. in your dependencies block in build.gradle at app level.

    dependencies {
         //other dependencies
         //......
        implementation "androidx.work:work-runtime:2.3.1"
    }