How do whatsapp and instant messaging apps work in background without persistent notification in Oreo?

Qasim Ahmed :

What I have studied on stackoverflow and Android documentation. Finally I've concluded this:

There is no way to create a background service for continuous tasks. If I really want a service I should start a foreground service and user continuously sees a persistent notification "App is running". There is no way to hide this notification. It is intentionally added by Google. Yes there are other options like WorkManager and JobScheduler but they do work periodically not continuously.

What I do want is to build an instant messaging app which continuously connects to the server using xmpp or sockets. But it requires a continuous connection but I don’t want to use a foreground service because it shows an irritating notification to the user "App is running".

Question 1: How does Whatsapp and other instant messaging app continuously connect to the server but not show a persistent notification ? How do they achieve this ?

Question 2: If Whatsapp use FCM for notifications then it will also work in those mobile which do not have playservices installed, so how does Whatsapp notification mechanism works ?

Abhishek Luthra :

Starting with Android 6.0 (API level 23), Android introduces two power-saving features that extend battery life for users: DOZE and APP STANDBY. These two features enforce many restrictions on your background processing while the phone is in Doze mode. You should read about Doze and app standby in the following link

https://developer.android.com/training/monitoring-device-state/doze-standby

Now, about your use case is that you want to receive the messages and incoming calls even when the app is not running. For this use case, Android announced High Priority FCM messages in GoogleIO2016. They are high priority Push message which grant the application temporary wakelock and network access, independent of Device's Doze state or if the app happens to be in the app standby. This allows the application to react to the message and notify the user in whatever way it wants about the instant message or incoming call.

I don't know exactly how WhatsApp does that unless I look at their code but you can handle your use case using FCM High Priority Messages. For more about your use case, follow the below link ofGoogleIO2016 Video from 08:30m to 10:30m

https://www.youtube.com/watch?v=VC2Hlb22mZM&t=505s

and read about this use case on the first link in this answer.

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=36251&siteId=1