Skip to content

Commit

Permalink
Merge pull request #7 from hiddenswitch/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
doctorpangloss committed Sep 9, 2015
2 parents ec6199a + 81b3b80 commit b6c0d90
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 18 deletions.
1 change: 1 addition & 0 deletions LiveData.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Services/Accounts/Accounts.cs
Original file line number Diff line number Diff line change
Expand Up @@ -211,14 +211,14 @@ static void HandleOnLogin (Error error, LoginUserResult response)
private static IEnumerator RegisterForPush ()
{
#if PUSH && UNITY_IOS
NotificationServices.RegisterForRemoteNotificationTypes (RemoteNotificationType.Alert | RemoteNotificationType.Badge | RemoteNotificationType.Sound);
var deviceToken = NotificationServices.deviceToken;
UnityEngine.iOS.NotificationServices.RegisterForNotifications (UnityEngine.iOS.NotificationType.Alert | UnityEngine.iOS.NotificationType.Badge | UnityEngine.iOS.NotificationType.Sound);
var deviceToken = UnityEngine.iOS.NotificationServices.deviceToken;

while (deviceToken == null) {
if (!string.IsNullOrEmpty (NotificationServices.registrationError)) {
if (!string.IsNullOrEmpty (UnityEngine.iOS.NotificationServices.registrationError)) {
yield break;
}
deviceToken = NotificationServices.deviceToken;
deviceToken = UnityEngine.iOS.NotificationServices.deviceToken;
yield return new WaitForEndOfFrame ();
}

Expand Down
5 changes: 0 additions & 5 deletions UniWeb/DLL.meta

This file was deleted.

Binary file removed UniWeb/DLL/Ionic.Zlib.dll
Binary file not shown.
7 changes: 0 additions & 7 deletions UniWeb/DLL/Ionic.Zlib.dll.meta

This file was deleted.

1 change: 0 additions & 1 deletion UniWeb/Plugins/Request.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#define USE_GZIP
#define USE_KEEPALIVE
#define USE_COOKIES
#define USE_SSL
Expand Down
1 change: 0 additions & 1 deletion UniWeb/Plugins/Response.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#define USE_GZIP
using System;
using System.Collections.Generic;
using System.IO;
Expand Down

0 comments on commit b6c0d90

Please sign in to comment.