Ensure that a PushProvider is available on a device before using it.

It help to fallback to UnifiedPush (if available) if the PlayServices are not installed on the device.
This commit is contained in:
Benoit Marty 2024-01-17 16:07:26 +01:00 committed by Benoit Marty
parent e2c9389d36
commit 7498c148f1
5 changed files with 45 additions and 1 deletions

View file

@ -32,6 +32,11 @@ interface PushProvider {
*/
val name: String
/**
* Return true if the push provider is available on this device.
*/
fun isAvailable(): Boolean
fun getDistributors(): List<Distributor>
/**