January 2021 - Androhub

SetUp Firebase Cloud Messaging in Android – Part 2

In the previous article, we learned how to connect FCM to any Android application and get the token in the Android device. In this article, we will learn how we can send push notification from Firebase Console and receive it in Android device. VIDEO TUTORIAL Types of Messages With FCM, you can send two types

Read More

SetUp Firebase Cloud Messaging in Android – Part 1

In this article, we are going to learn how to integrate Firebase Cloud Messaging in Android applications. What is FCM? Firebase Cloud Messaging (FCM) is a cross-platform messaging solution that lets you reliably send messages at no cost. Using FCM, you can notify a client app that new email or other data is available to

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

Working with Git in Android Studio

What is Git? Git is an open-source distributed version-control system for tracking changes in any set of files. Benefits of Git: Excellent support for parallel development, support for hundreds of parallel branches. Performance: Git provides the best performance when it comes to version control systems. Committing, branching, merging all are optimized for a better performance

Read More