Beispiel #1
0
 public override bool SetLocalNotificationMessage(FuelSDK.LocalNotificationType localNotificationType, string message)
 {
     return(false);
 }
Beispiel #2
0
 public override bool IsLocalNotificationActive(FuelSDK.LocalNotificationType localNotificationType)
 {
     return(false);
 }
Beispiel #3
0
 public override bool SetLocalNotificationActive(FuelSDK.LocalNotificationType localNotificationType, bool active)
 {
     return(iOSSetLocalNotificationActive(localNotificationType.ToString(), active));
 }
Beispiel #4
0
 public override bool IsLocalNotificationActive(FuelSDK.LocalNotificationType localNotificationType)
 {
     return(iOSIsLocalNotificationActive(localNotificationType.ToString()));
 }
Beispiel #5
0
 public override bool IsLocalNotificationActive(FuelSDK.LocalNotificationType localNotificationType)
 {
     return(m_jniFuelSDKUnity.CallStatic <bool> ("isLocalNotificationActive", localNotificationType.ToString()));
 }
Beispiel #6
0
 public override bool SetLocalNotificationMessage(FuelSDK.LocalNotificationType localNotificationType, string message)
 {
     return(iOSSetLocalNotificationMessage(localNotificationType.ToString(), message));
 }
Beispiel #7
0
 public override bool SetLocalNotificationActive(FuelSDK.LocalNotificationType localNotificationType, bool active)
 {
     return(m_jniFuelSDKUnity.CallStatic <bool> ("setLocalNotificationActive", localNotificationType.ToString(), active));
 }
Beispiel #8
0
 public override bool SetLocalNotificationMessage(FuelSDK.LocalNotificationType localNotificationType, string message)
 {
     return(m_jniFuelSDKUnity.CallStatic <bool> ("setLocalNotificationMessage", localNotificationType.ToString(), message));
 }
Beispiel #9
0
 public abstract bool IsLocalNotificationActive(FuelSDK.LocalNotificationType localNotificationType);
Beispiel #10
0
 public abstract bool SetLocalNotificationActive(FuelSDK.LocalNotificationType localNotificationType, bool active);
Beispiel #11
0
 public abstract bool SetLocalNotificationMessage(FuelSDK.LocalNotificationType localNotificationType, string message);