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