Esempio n. 1
0
 public override void CancelNotification(string pushId)
 {
     GowIOSBinding.CancelNotification();
 }
Esempio n. 2
0
 public override void RemoveNotification(string pushId)
 {
     GowIOSBinding.RemoveNotification(pushId);
 }
Esempio n. 3
0
        protected override void ShowDeviceDialog(string title, string message, params DialogButtons[] buttons)
        {
            var buttonsStrings = buttons.Select(b => b.ToString()).ToArray();

            GowIOSBinding.ShowDefaultDialog(title, message, buttonsStrings);
        }
Esempio n. 4
0
 protected override void ProcessGetDeviceToken()
 {
     GowIOSBinding.RegisterForRemoteNotifications();
 }
Esempio n. 5
0
 public override void RequestNotifications()
 {
     GowIOSBinding.RequestNotifications();
 }
Esempio n. 6
0
        protected override IEnumerator C_Init()
        {
            GowIOSBinding.Init(Settings.serverUrl, Settings.instance.gameKey, Settings.instance.androidGameId, Settings.instance.androidPublicKey);

            yield return(0);
        }