コード例 #1
0
        public static void ReplayPushNotificationsIfWaiting()
        {
            IsAppCenterStarted = true;

            // If `ReplayUnprocessedPushNotifications` was called before App Center start
            // then need to call it again after App Center was started.
            if (IsWaitingForReplay)
            {
                PushInternal.ReplayUnprocessedPushNotifications();
                IsWaitingForReplay = false;
            }
        }
コード例 #2
0
ファイル: Push.cs プロジェクト: lovoror/globetrotter2
 public static void EnableFirebaseAnalytics()
 {
     PushInternal.EnableFirebaseAnalytics();
 }
コード例 #3
0
ファイル: Push.cs プロジェクト: lovoror/globetrotter2
 public static AppCenterTask SetEnabledAsync(bool enabled)
 {
     return(PushInternal.SetEnabledAsync(enabled));
 }
コード例 #4
0
ファイル: Push.cs プロジェクト: lovoror/globetrotter2
 public static AppCenterTask <bool> IsEnabledAsync()
 {
     return(PushInternal.IsEnabledAsync());
 }
コード例 #5
0
ファイル: Push.cs プロジェクト: lovoror/globetrotter2
 public static void AddNativeType(List <RawType> nativeTypes)
 {
     PushInternal.AddNativeType(nativeTypes);
 }
コード例 #6
0
ファイル: Push.cs プロジェクト: lovoror/globetrotter2
 public static void PrepareEventHandlers()
 {
     PushInternal.PrepareEventHandlers();
 }
コード例 #7
0
ファイル: Push.cs プロジェクト: lovoror/globetrotter2
 public static void StartPush()
 {
     PushInternal.StartPush();
 }