public void AreNotificationsAuthorized(Action <bool> authorized) { authorized?.Invoke(AndroidNotificationCenterExtensions.AreNotificationsEnabled()); }
public void AreNotificationsAuthorized(string channelId, Action <bool> authorized) { authorized?.Invoke(AndroidNotificationCenterExtensions.AreNotificationsEnabled(channelId)); }
static void Register() { AndroidNotificationCenterExtensions.Initialize(); GameNotificationsAuthorizationManager.RegisterImplementation(new AndroidGameNotificationAuthorizationManager()); }