public void TrySetNotificationPolicy()
 {
     if (AGPermissions.IsPermissionGranted(AGPermissions.ACCESS_NOTIFICATION_POLICY))
     {
         var policy = new AGNotificationManager.Policy(AGNotificationManager.Policy.PriorityCategory.Alarms,
                                                       AGNotificationManager.Policy.PrioritySenders.Any, AGNotificationManager.Policy.PrioritySenders.Any);
         AGNotificationManager.SetNotificationPolicy(policy);
     }
     else
     {
         Debug.LogWarning("You do not have the rights to access Notification Policy");
         _resultText.text = "You do not have the rights to access Notification Policy";
     }
 }