jetpack components Archives - Androhub

Scheduling Tasks with WorkManager

In this article, we will learn how to schedule tasks using WorkManager. What is WorkManager? WorkManager is a part of Jetpack Components which provides the facility to execute or perform background operations seamlessly. Benefits of WorkManager: WorkManager executes works on the background thread which eliminates the creation of threads. But still, you can create a

Read More

Room Database | Android Jetpack – Part 2

In the first part of the Room Database article, we learned how to integrate Room Database to Android applications and perform CRUD operations. In this article, we will learn Room Database something more in detail. VIDEO TUTORIAL @Ignore If we have to ignore any column from the Entity then you can use @Ignore annotation

Read More

Room Database | Android Jetpack – Part 1

In this article, We are going to learn how to implement the Room Database in Android Application. What is Room Database? Room is a persistence library part of Android Jetpack Components. It provides an abstraction layer over SQLite to allow fluent database access while harnessing the full power of SQLite. Benefits of Room Compile-time verification

Read More