Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I import androidx.work.WorkManager?

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

enter image description here

like image 861
Jomme Avatar asked Dec 31 '22 07:12

Jomme


1 Answers

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"
}
like image 133
vikas kumar Avatar answered Jan 13 '23 12:01

vikas kumar