diff --git a/LiveData.meta b/LiveData.meta index 3de8bb7..986fc27 100644 --- a/LiveData.meta +++ b/LiveData.meta @@ -1,4 +1,5 @@ fileFormatVersion: 2 guid: c938544b7285a48219158af85baa9d7a +folderAsset: yes DefaultImporter: userData: diff --git a/Services/Accounts/Accounts.cs b/Services/Accounts/Accounts.cs index 4fe209d..2b9bec6 100644 --- a/Services/Accounts/Accounts.cs +++ b/Services/Accounts/Accounts.cs @@ -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 (); } diff --git a/UniWeb/DLL.meta b/UniWeb/DLL.meta deleted file mode 100644 index 4ab2115..0000000 --- a/UniWeb/DLL.meta +++ /dev/null @@ -1,5 +0,0 @@ -fileFormatVersion: 2 -guid: f64b129b5f97c44bda7ac31c4d713331 -folderAsset: yes -DefaultImporter: - userData: diff --git a/UniWeb/DLL/Ionic.Zlib.dll b/UniWeb/DLL/Ionic.Zlib.dll deleted file mode 100644 index 7c29e8c..0000000 Binary files a/UniWeb/DLL/Ionic.Zlib.dll and /dev/null differ diff --git a/UniWeb/DLL/Ionic.Zlib.dll.meta b/UniWeb/DLL/Ionic.Zlib.dll.meta deleted file mode 100644 index e4f2942..0000000 --- a/UniWeb/DLL/Ionic.Zlib.dll.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 1993cee6b2f484b1ea151e20ef16e363 -MonoAssemblyImporter: - serializedVersion: 1 - iconMap: {} - executionOrder: {} - userData: diff --git a/UniWeb/Plugins/Request.cs b/UniWeb/Plugins/Request.cs index f98e955..4f22bbe 100644 --- a/UniWeb/Plugins/Request.cs +++ b/UniWeb/Plugins/Request.cs @@ -1,4 +1,3 @@ -#define USE_GZIP #define USE_KEEPALIVE #define USE_COOKIES #define USE_SSL diff --git a/UniWeb/Plugins/Response.cs b/UniWeb/Plugins/Response.cs index a363a09..dfcca2f 100644 --- a/UniWeb/Plugins/Response.cs +++ b/UniWeb/Plugins/Response.cs @@ -1,4 +1,3 @@ -#define USE_GZIP using System; using System.Collections.Generic; using System.IO;