1

In iOS we I have implemented call kit with VOIP push using push kit. So How can we achieve same in android ?

I don't have idea that android does support pushkit like functionality to send voip push

Any help or suggestion or docs would be great

Plutomen DEV
  • 177
  • 2
  • 9
  • Android don't have any pushkit feature. You can achieve this by using android services – M. Hamza Rajput May 02 '19 at 12:16
  • @M.HamzaRajput Thanks for your response. How can we handle this when app is locked. Like are we able to show the app calling screen even when device is locked and app is in killed state – Plutomen DEV May 02 '19 at 12:35
  • You can add firebase sdk in your dependences and create a push notification receiver in your android app. When you get a push notification in your app you can awake you application with UI flags. – M. Hamza Rajput May 03 '19 at 07:50

1 Answers1

1

This might help.

First you need to create a push notification receiver in your service. Here is service exemple. While your application is background or destroyed. You can receive push notification from receiver. Then you can start your activity as you want to start with windows flags.

If you have a query you can ask.

M. Hamza Rajput
  • 7,810
  • 2
  • 41
  • 36