Android Advanced Archives - Androhub

Implementation vs API banner

Implementation vs api in Android Gradle

Today we will learn about Implementation vs api in Android Gradle. While working on Android Gradle files you must have come across these keywords multiple times. The ‘api’ keyword is mostly used when you are working on modular applications and working on a library module. Definitions ‘implementation’: This configuration is used to declare dependencies that are

Read More
Convert android project into library banner

Convert an Android Project into a Library

Have you ever run into a situation where you want to convert an Android project into a Library so that you can use it in your project? Why do we need this? We like some project which can be useful in our project but there is no library available for it. Instead of copy pasting

Read More
Publish an Android Library

Publish an Android Library

In the previous article, we learned how to create an Android Library. In this article, we will learn how to Publish an Android Library. Benefits of Publishing an Android Library: Easy code management. One point of access to your library. Use the library in multiple projects. There are several places where you can publish an

Read More
Create an Android Library

Create an Android Library

Android libraries play a vital role in Android application development. We use them in our day-to-day development. Every Android project consists lot of libraries which are nothing but our dependencies. Have you ever thought about how to create an Android library? Today we will learn to Create an Android library. What is Android Library? Android libraries

Read More

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