Create WhatsApp Stickers Android Application

Whatsapp Stickers

What’s trending on PlayStore nowadays? PUBG, TikTok, Subway Surfers, Temple Run, Facebook, Instagram? I think it’s WhatsApp stickers. Yes, we are noticing lots of applications on playstore related to gbwhatsapp stickers. Nowadays especially in India stickers of election, modi, rahul, bjp, congress are in trend.

Apart from trending stickers there are many applications of stickers which are about shayari, quotes, actor/actress, famous personalities etc. So what actually these stickers are? It is nothing but just a small image which is used to communicate with other users, it is another form of smiley/emoji to share in your messages or to express your feelings.

Continue Reading


Firebase Crash Reporting In Android

Firebase Crash Reporting enables you to collect detailed report of errors in your app. It allows you to get the reason of particular crash/error.

We have already discussed about Firebase Remote Config and Firebase Authentication in previous articles. Today we will discuss about Firebase Crash Reporting.

Crash is one of the famous reason why user uninstalls your app from device. As android is widely used OS , it is having different dimensions, screen size, API levels, densities and some vendors also customize default OS. Continue Reading


Getting Started With Firebase Android

In I/O 2016 google released new and upgraded tool called FirebaseAs a mobile developer when you are building large scale applications you need back-end support as well as a special developer who can work with server level stuffs. 

Firebase provides all those kind of functionality which are needed from server side, in addition to Realtime Database, Storage and Hosting, it also provides Authentications, Analytics, Notifications, Crash Reporting and much more.

Firebase Android

Source : Firebase

In this series of Firebase we will take a detailed look at almost all features provided by Firebase. Continue Reading


RecyclerView With Android DataBinding

In I/O 2015 Google announced a data binding library for Android. With Data Binding, you create an ongoing link between an element in the user interface and a value. Data Binding is the process that establishes a connection between the application UI and business logic.

In this post we will learn how to integrate recyclerview with android Data Binding.

Step 1 : Enable dataBinding in your module level gradle, here is how your build.gradle should look like.

Continue Reading


Advance DataBinding in Android

In earlier posts we have already seen

  1. Working with DataBinding Android
  2. Image Loading with DataBinding in Android
  3. Two-way DataBinding in Android
  4. Setting custom font through XML with DataBinding

Today we will discuss more about Advance DataBinding

Binding Events : 

Events will be bound to handler methods directly, like we used to do it with android:onClick. Only change will be we have to take reference of our interface(handler).
Continue Reading