com.onesignal.unity.ios 3.0.7 → 3.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Runtime/OneSignalIOS.cs +2 -2
- package/package.json +2 -2
package/Runtime/OneSignalIOS.cs
CHANGED
|
@@ -242,13 +242,13 @@ namespace OneSignalSDK {
|
|
|
242
242
|
return await proxy;
|
|
243
243
|
}
|
|
244
244
|
|
|
245
|
-
public override async Task<bool>
|
|
245
|
+
public override async Task<bool> EnterLiveActivity(string activityId, string token) {
|
|
246
246
|
var (proxy, hashCode) = _setupProxy<bool>();
|
|
247
247
|
_enterLiveActivity(activityId, token, hashCode, BooleanCallbackProxy);
|
|
248
248
|
return await proxy;
|
|
249
249
|
}
|
|
250
250
|
|
|
251
|
-
public override async Task<bool>
|
|
251
|
+
public override async Task<bool> ExitLiveActivity(string activityId) {
|
|
252
252
|
var (proxy, hashCode) = _setupProxy<bool>();
|
|
253
253
|
_exitLiveActivity(activityId, hashCode, BooleanCallbackProxy);
|
|
254
254
|
return await proxy;
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "com.onesignal.unity.ios",
|
|
3
3
|
"displayName": "OneSignal Unity SDK - iOS",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.9",
|
|
5
5
|
"unity": "2018.4",
|
|
6
6
|
"description": "OneSignal is the market leader in customer engagement, powering mobile push, web push, email, and in-app messages.",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"com.onesignal.unity.core": "3.0.
|
|
8
|
+
"com.onesignal.unity.core": "3.0.9"
|
|
9
9
|
},
|
|
10
10
|
"keywords": [
|
|
11
11
|
"push-notifications",
|