Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In app notification in android

Is there is something like In App Notification?(Other than push notification) if yes please give me some link for information on it. I had google but does not found anything important.

like image 409
PPD Avatar asked Mar 16 '15 05:03

PPD


1 Answers

In App Notifications

It is a new type of notification that is displayed inside the app. Users will see it only if they are inside the app.

There are usually two types of in app notifications or in app messaging:

  1. Intrusive
  2. Non-Intrusive

The Intrusive In App Notifications are usually created when you do an action inside the app and the app developer wants to promote something to you.

For example, if there is a free fitness app. At the end of doing some exercise, you are asked to view one video ad in exchange for the free exercise that you received or you can be asked to leave a review on Google Play Store or Apple Store for the app.

The Non-Intrusive In App Notifications are notifications that sit inside a screen and can be viewed whenever the user is in the app and feels like they should do it.

This type of messages can help app owners to share personalised recommendations, offers, discount codes or updates with their users.

Usually, they are used when you want to reach users that have opted out of push notifications or other communication channels.

Some apps will allow their customers to reply with feedback to their notifications.

There are software development kits from Apptegrity or Firebase or Apptentive that help Android and iOS apps to integrate easily with non-intrusive in-app notifications.

I hope this answers your question.

like image 159
dragosiv Avatar answered Oct 03 '22 11:10

dragosiv