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