Top "Android-workmanager" questions

Android Jetpack WorkManager is used for scheduling and managing one time and periodic background tasks.

How to solve 'Program type already present: com.google.common.util.concurrent.ListenableFuture'?

I am trying to use WorkManager 1.0.0-alpha09. and getting this error: Program type already present: com.google.common.util.concurrent.…

java android guava android-workmanager
Periodic daily work requests using WorkManager

How to properly use the new WorkManager from Android Jetpack to schedule a one per day periodic work that should …

android android-architecture-components android-jetpack android-workmanager
Periodic work requests using WorkManager not working

i am trying to write a periodic workmanager script but it just run when i open the app and it …

android android-workmanager periodicity
What are the retry strategy/ mechanism for WorkManager's OneTimeWorkRequest

I have the following one-time worker. // Create a Constraints that defines when the task should run Constraints constraints = new Constraints.…

android android-architecture-components android-workmanager
Execute task every second using Work Manager API

Work Manager is a new API and I try to execute task every second, but it doesn't work. This is …

android kotlin background-process background-service android-workmanager
How to schedule notifications using WorkManager?

I want to schedule a notification everytime the user add a note in the database for a specific time. While …

android android-jetpack android-workmanager
PeriodicWorkRequest with WorkManager

Well as WorkManager is newly introduce in Google I/O, I'm trying to use workmanager to perform task periodically, What …

android android-workmanager
Unique OneTimeWorkRequest in Workmanager

We are using OneTimeWorkRequest to start background task in our project. At application start, we are starting the OneTimeWorkRequest (say …

android android-architecture-components android-jetpack android-workmanager
java.lang.IllegalStateException: Cannot invoke observeForever on a background thread

Can someone help me find where I am going wrong here. I need to continously observer network data and update …

android kotlin android-architecture-components android-workmanager android-livedata
WorkManager.getInstance().cancelAllWorkByTag() not stopping the periodic job

for periodic task I am using work manager as: PeriodicWorkRequest.Builder wifiWorkBuilder = new PeriodicWorkRequest.Builder(FileUpload.class, 15, TimeUnit.MINUTES) .setConstraints(…

android android-jetpack android-workmanager