When should you not use a WorkManager?

WorkManager is not answer to all of the background tasks . E.G. You shouldn’t use it for processing payments since it doesn’t need to survive process death and these task needs to be executed immediately. Consider using Foreground Service. Its also not a great idea to use them for parsing data and contents of view.15 May 2018

Read more