Dialogflow entities are used to identify and extract useful data from user input. Informations like place-name, date and time, person-name,percentage, quantity are very important to extract from user input.
For example user saying “Set a reminder for 12pm tomorrow.”
12pm and tomorrow are important info that we need, to set reminder. So in this case 12pm and tomorrow will become entities for our intent.
Continue Reading →

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 →
Welcome to another post of Firebase series. We have already discussed about Firebase Remote Config, Firebase Authentication and Firebase Crash Report. Today we are going to discuss about Firebase Realtime Database.
As an android developer we always have a feeling that if we need to sync data between more number of users we need :
- Webservices/API
- MySQL database
- Some domain
- Server to host everything.
With Firebase Realtime Database we can avoid all above things. It is a database hosted on cloud. It is a NoSQL database. You will be allowed to store and sync data in JSON format. Each data will be stored as a JSON. Continue Reading →
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 →
Authentication is the process to provide uniqueness to each user of your application. It will be the identity of particular user.
If your application requires user’s data to be securely stored, you need to authenticate each and every user.
In earlier days we need to have some back-end service developed either in PHP, Java or some other platform. We need some web developer to do that kind of things.
Firebase Authentication provides a way to directly authenticate a user via email and password and store that user to cloud.
Firebase Authentication also support social media authentication like G+, Facebook, Twitter, Github. It means now its a easy task to perform login with facebook or login with g+ task.
Continue Reading →