Skip to content

Commit b6c0d90

Browse files
Merge pull request #7 from hiddenswitch/develop
Develop
2 parents ec6199a + 81b3b80 commit b6c0d90

File tree

7 files changed

+5
-18
lines changed

7 files changed

+5
-18
lines changed

LiveData.meta

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Services/Accounts/Accounts.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -211,14 +211,14 @@ static void HandleOnLogin (Error error, LoginUserResult response)
211211
private static IEnumerator RegisterForPush ()
212212
{
213213
#if PUSH && UNITY_IOS
214-
NotificationServices.RegisterForRemoteNotificationTypes (RemoteNotificationType.Alert | RemoteNotificationType.Badge | RemoteNotificationType.Sound);
215-
var deviceToken = NotificationServices.deviceToken;
214+
UnityEngine.iOS.NotificationServices.RegisterForNotifications (UnityEngine.iOS.NotificationType.Alert | UnityEngine.iOS.NotificationType.Badge | UnityEngine.iOS.NotificationType.Sound);
215+
var deviceToken = UnityEngine.iOS.NotificationServices.deviceToken;
216216

217217
while (deviceToken == null) {
218-
if (!string.IsNullOrEmpty (NotificationServices.registrationError)) {
218+
if (!string.IsNullOrEmpty (UnityEngine.iOS.NotificationServices.registrationError)) {
219219
yield break;
220220
}
221-
deviceToken = NotificationServices.deviceToken;
221+
deviceToken = UnityEngine.iOS.NotificationServices.deviceToken;
222222
yield return new WaitForEndOfFrame ();
223223
}
224224

UniWeb/DLL.meta

Lines changed: 0 additions & 5 deletions
This file was deleted.

UniWeb/DLL/Ionic.Zlib.dll

-96 KB
Binary file not shown.

UniWeb/DLL/Ionic.Zlib.dll.meta

Lines changed: 0 additions & 7 deletions
This file was deleted.

UniWeb/Plugins/Request.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#define USE_GZIP
21
#define USE_KEEPALIVE
32
#define USE_COOKIES
43
#define USE_SSL

UniWeb/Plugins/Response.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#define USE_GZIP
21
using System;
32
using System.Collections.Generic;
43
using System.IO;

0 commit comments

Comments
 (0)