forked from pubnub/unity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pubnub.yml
974 lines (973 loc) · 30.4 KB
/
.pubnub.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
---
version: v6.0.5
changelog:
- date: 2022-09-02
version: v6.0.5
changes:
- type: bug
text: "Json.net stores its settings globally, which means any changes in the client application will affect the behaviour of the SDK. The SDK will now use the initial default settings."
- date: 2022-07-27
version: v6.0.4
changes:
- type: improvement
text: "UUID has been marked as deprecated, and it's being renamed to UserId. For now, both variants will work, but UUID will be gradually phased out in favor of UserId."
- date: 2022-07-12
version: v6.0.3
changes:
- type: bug
text: "Fixes continuous allocation of components per request."
- type: improvement
text: "Reduce the load of `TestPublishLoadTest` to stop derailing the pipeline."
- type: improvement
text: "Disable `TestPublishLoadTest` temporarily."
- date: 2022-06-28
version: v6.0.2
changes:
- type: bug
text: "Fixes issue of encoding in FetchMessages and MessageCount apis."
- date: 2021-11-30
version: v6.0.1
changes:
- type: improvement
text: "Remove BouncyCastle, JsonFx.Json, MarkerMetro and crypto DLLs. Features works without the need of these libs."
-
changes:
-
text: "SetToken and ParseToken for PAMv3."
type: feature
-
text: "BREAKING CHANGE - Removed Token Management System - Client end"
type: improvement
date: 2021-10-12
version: v6.0.0
-
changes:
-
text: "Fixed missing UUID in message action events."
type: bug
-
text: "Fixed custom count settings in Fetch Messages with Message Actions."
type: bug
date: 2021-07-06
version: v5.0.1
-
changes:
-
text: "BREAKING CHANGE - New JSON Parser Json .Net for Unity 2.0.1. The parser used earlier has been deprecated."
type: improvement
-
text: "BREAKING CHANGE - IV used for encryption is now random by default."
type: improvement
date: 2021-04-12
version: v5.0.0
-
changes:
-
text: "Fixes issue of missing `more` field in FetchMessages response."
type: bug
date: 2020-12-14
version: v4.10.1
-
changes:
-
text: "Files."
type: feature
-
text: " Random IV in Encryption."
type: feature
-
text: "Fetch with UUID and Message Type."
type: feature
-
text: "Fetch with 100 messages."
type: improvement
date: 2020-10-19
version: v4.10.0
-
changes:
-
text: "Objects V2."
type: feature
date: 2020-09-15
version: v4.9.0
-
changes:
-
text: "Example scene fix for Unity 2018."
type: bug
date: 2020-06-17
version: v4.8.3
-
changes:
-
text: "Objects Sorting"
type: feature
date: 2020-04-10
version: v4.8.2
-
changes:
-
text: "Correct null check for signal callback"
type: bug
date: 2020-03-10
version: v4.8.1
-
changes:
-
text: "Token Management System - Client end"
type: improvement
date: 2020-02-18
version: v4.8.0
-
changes:
-
text: "HereNow Deserialization Error fix"
type: improvement
date: 2020-02-05
version: v4.7.3
-
changes:
-
text: "Heartbeat query param in Presence heartbeat call"
type: bug
-
text: "Presence Heartbeat defaults to 300"
type: improvement
date: 2020-01-16
version: v4.7.2
-
changes:
-
text: "Objects Filtering"
type: improvement
date: 2020-01-06
version: v4.7.1
-
changes:
-
text: "APNS2"
type: improvement
-
text: "Push payload helper class"
type: improvement
date: 2019-12-24
version: v4.7.0
-
changes:
-
text: "Message Actions added missing TotalCount, Next, Prev for Get Users/Spaces, Manage/Get Members/Memberships"
type: improvement
-
text: "Return types of Start and End in PNGetMessageActionsMore changed to long"
type: improvement
date: 2019-11-22
version: v4.6.0
-
changes:
-
text: "Message Actions"
type: improvement
-
text: "Fetch with Message Actions"
type: improvement
date: 2019-11-21
version: v4.5.0
-
changes:
-
text: "Objects"
type: improvement
date: 2019-11-08
version: v4.4.0
-
changes:
-
text: "Signals"
type: improvement
-
text: "IncludeMeta in History and Fetch"
type: improvement
date: 2019-10-10
version: v4.3.0
-
changes:
-
text: "Presence Timeout cannot be lower than 20"
type: improvement
-
text: "PNPresenceEventResult.State property not populated in callback"
type: bug
date: 2019-06-04
version: v4.2.1
-
changes:
-
text: "Message Counts simplification (Breaking changes from the previous version)."
type: improvement
date: 2019-03-13
version: v4.2.0
-
changes:
-
text: "Message Counts API"
type: improvement
date: 2019-03-05
version: v4.1.1
-
changes:
-
text: "BREAKING CHANGE: Fixed a typo by renaming the `event` from `SusbcribeCallback` to `SubscribeCallback` and the `EventArgs` from `SusbcribeEventEventArgs` to `SubscribeEventEventArgs` "
type: improvement
date: 2019-02-18
version: v4.1.0
-
changes:
-
text: "Presence Heartbeat call delays itself when a Subscribe call precedes it"
type: improvement
-
text: "Heartbeats per channel"
type: feature
-
text: "QueryParams in all API calls"
type: feature
-
text: "User Exceptions Fix"
type: improvement
-
text: "Leave callback message exception fix"
type: bug
date: 2019-01-09
version: v4.0.5
-
changes:
-
text: "UnityPackage reorganization"
type: improvement
date: 2018-11-13
version: v4.0.4
-
changes:
-
text: "Travis update for UnityPackage"
type: improvement
date: 2018-11-12
version: v4.0.3
-
changes:
-
text: "Delete Messages Fix"
type: improvement
date: 2018-08-23
version: v4.0.2
-
changes:
-
text: "Integration tests fixes"
type: improvement
date: 2018-03-08
version: v4.0.1
-
changes:
-
text: "Here Now Refresh"
type: improvement
date: 2018-02-28
version: v4.0-rc2
-
changes:
-
text: Cleanup
type: improvement
date: 2018-01-22
version: v4.0-beta6
-
changes:
-
text: "Logging enhancements"
type: improvement
date: 2018-01-18
version: v4.0-beta5
-
changes:
-
text: Cleanup
type: improvement
date: 2018-01-16
version: v4.0-beta4
-
changes:
-
text: "Windows Universal compatibility"
type: improvement
date: 2018-01-11
version: v4.0-beta3
-
changes:
-
text: "Leave fixes"
type: improvement
date: 2017-12-26
version: v4.0-beta2
-
changes:
-
text: "All new PubNub Unity SDK"
type: improvement
date: 2017-12-18
version: v4.0-beta1
-
changes:
-
text: "Presence delta intervals"
type: improvement
date: 2017-12-11
version: v3.7.10
-
changes:
-
text: "Unity UWP compatibility"
type: improvement
date: 2017-08-08
version: v3.7.9
-
changes:
-
text: "Presence delta intervals"
type: improvement
date: 2017-03-31
version: v3.7.8
-
changes:
-
text: "Region check in Timetoken dictionary"
type: bug
-
text: "Prefix UUID with 'pn-'"
type: improvement
date: 2017-02-20
version: v3.7.7
-
changes:
-
text: "Fixed user state issue for other UUID"
type: bug
date: 2017-01-12
version: v3.7.6.2
-
changes:
-
text: "Changed origin to ps.pndsn.com"
type: feature
date: 2016-12-21
version: v3.7.6.1
-
changes:
-
text: "Offers the ability to set a per message time to live in storage."
type: feature
-
text: "Find out which UUID sent the message (only available when debug symbol `PUBNUB_PS_V2_RESPONSE` is used)."
type: feature
date: 2016-12-09
version: v3.7.6
-
changes:
-
text: "Windows Store Universal 10 store compatibility"
type: improvement
-
text: "Changed the JSON lib to use: https://github.com/MarkerMetro/MarkerMetro.Unity.JsonFx, as it is compatible with Windows store."
type: improvement
-
text: "BouncyCastle(http://www.bouncycastle.org/csharp/) is used for crypto functionality."
type: improvement
date: ~
version: v3.7.5
-
changes:
-
text: "Added a debug symbol `PUBNUB_PS_V2_RESPONSE` to enable v4 subscribe"
type: feature
date: 2016-09-24
version: v3.7.4
-
changes:
-
text: "Fixed SetGameObject"
type: feature
date: ~
version: v3.7.3
-
changes:
-
text: "PubSub v2"
type: feature
-
text: "Channel Groups"
type: feature
-
text: "Message Filtering"
type: feature
-
text: "Wildcard Subscribe"
type: feature
-
text: "Code optimizations"
type: improvement
date: 2016-08-02
version: v3.7.2
-
changes:
-
text: "A new debug symbol to reduce the usage of coroutines. Set REDUCE_PUBNUB_COROUTINES, to use the alternate logic for www coroutines used by the PubNub's SDK. When using this option it is recommended that you call TerminateCurrentSubscriberRequest when the app comes back to the foreground else an ongoing long request will wait till the timeout value to abort and reinit the request."
type: improvement
-
text: "For iOS if the value of NonSubscribeTimeout and SubscribeTimeout is greater than 59 secs, the SDK will force the value to be 59 secs."
type: improvement
date: 2016-06-21
version: v3.6.9.1
-
changes:
-
text: "Refactored code."
type: improvement
-
text: "JSON library: the pre-compiler directives to choose between MiniJSON and JSONFx have been moved to the class JSONSerializer.cs."
type: improvement
-
text: |
`Logging: In addition to setting the variables PubnubLogLevel = LoggingMethod.Level.Info and PubnubErrorLevel = PubnubErrorFilter.Level.Info you also need to add a "define symbol": ENABLE_PUBNUB_LOGGING for each of the platform you want to enable logging.
This setting is available in the Unity Editor: File-> Build Settings -> Player Settings -> Other Settings -> Configuration -> Scripting define symbols.
After you type ENABLE_PUBNUB_LOGGING in it do remember to press return with the focus still in the text box or your setting will not be saved.
`
type: improvement
-
text: "Add mobile push methods."
type: feature
-
text: "Default value of SSL is now true."
type: improvement
date: ~
version: v3.6.9.0
-
changes:
-
text: "some fixes for subscribe request timeouts."
type: bug
date: ~
version: v3.6.8.8
-
changes:
-
text: "removes forceful garbage collection."
type: improvement
date: ~
version: v3.6.8.7
-
changes:
-
text: "Fix for \"null\" message in callback when a message contains multiple messages, one of which is of type System.Collections.Generic.Dictionary`2[System.String,System.Object]."
type: bug
date: ~
version: v3.6.8.6
-
changes:
-
text: "Duplicate messages on some occasions."
type: bug
date: ~
version: v3.6.8.4
-
changes:
-
text: "Non subscribe callbacks were not fired when called from within a callback of an earlier request."
type: bug
date: ~
version: v3.6.8.3
-
changes:
-
text: "Missed messages when adding a channel to multiplexed."
type: bug
-
text: "Sub timeout gets fired when in app goes in background and the request is not complete."
type: bug
-
text: "User State didn't change in some cases."
type: bug
-
text: "Multiple requests heartbeats were running."
type: bug
date: ~
version: v3.6.8.1
features:
access:
- ACCESS-PARSE-TOKEN
- ACCESS-SET-TOKEN
channel-groups:
- CHANNEL-GROUPS-ADD-CHANNELS
- CHANNEL-GROUPS-REMOVE-CHANNELS
- CHANNEL-GROUPS-REMOVE-GROUPS
- CHANNEL-GROUPS-LIST-CHANNELS-IN-GROUP
others:
- TELEMETRY
- QUERY-PARAM
- CREATE-PUSH-PAYLOAD
- RANDOM-INITIALIZATION-VECTOR
presence:
- PRESENCE-HERE-NOW
- PRESENCE-WHERE-NOW
- PRESENCE-SET-STATE
- PRESENCE-GET-STATE
- PRESENCE-HEARTBEAT
- PRESENCE-HEARTBEAT-ON-DEMAND
- PRESENCE-HEARTBEAT-THROTTLED
- PRESENCE-HERE-NOW-REFRESH
- PRESENCE-DELTAS
publish:
- PUBLISH-STORE-FLAG
- PUBLISH-WITH-METADATA
- PUBLISH-GET
- PUBLISH-POST
- PUBLISH-ASYNC
- PUBLISH-MESSAGE-TTL
- PUBLISH-FIRE
- PUBLISH-REPLICATION-FLAG
- PUBLISH-RAW-JSON
- PUBLISH-FILE-MESSAGE
push:
- PUSH-ADD-DEVICE-TO-CHANNELS
- PUSH-REMOVE-DEVICE-FROM-CHANNELS
- PUSH-LIST-CHANNELS-FROM-DEVICE
- PUSH-REMOVE-DEVICE
- PUSH-TYPE-APNS
- PUSH-TYPE-APNS2
- PUSH-TYPE-FCM
storage:
- STORAGE-REVERSE
- STORAGE-INCLUDE-TIMETOKEN
- STORAGE-START-END
- STORAGE-COUNT
- STORAGE-DELETE-MESSAGES
- STORAGE-FETCH-MESSAGES
- STORAGE-MESSAGE-COUNT
- STORAGE-HISTORY-WITH-META
- STORAGE-FETCH-WITH-META
- STORAGE-FETCH-WITH-MESSAGE-ACTIONS
- STORAGE-FETCH-WITH-FILE
- STORAGE-FETCH-WITH-INCLUDE-MESSAGE-TYPE
- STORAGE-FETCH-WITH-INCLUDE-UUID
- STORAGE-FETCH-DEFAULT-100
subscribe:
- SUBSCRIBE-CHANNELS
- SUBSCRIBE-CHANNEL-GROUPS
- SUBSCRIBE-PRESENCE-CHANNELS
- SUBSCRIBE-PRESENCE-CHANNELS-GROUPS
- SUBSCRIBE-WITH-TIMETOKEN
- SUBSCRIBE-WILDCARD
- SUBSCRIBE-FILTER-EXPRESSION
- SUBSCRIBE-PUBSUB-V2
- SUBSCRIBE-PUBLISHER-UUID
- SUBSCRIBE-SIGNAL-LISTENER
- SUBSCRIBE-MEMBERSHIP-LISTENER
- SUBSCRIBE-SPACE-LISTENER
- SUBSCRIBE-USER-LISTENER
- SUBSCRIBE-MESSAGE-ACTIONS-LISTENER
- SUBSCRIBE-FILE-LISTENER
objects:
- OBJECTS-FILTERING
- OBJECTS-SORTING
- OBJECTS-GET-ALL-UUID-METADATA
- OBJECTS-GET-UUID-METADATA
- OBJECTS-SET-UUID-METADATA
- OBJECTS-REMOVE-UUID-METADATA
- OBJECTS-GET-ALL-CHANNEL-METADATA
- OBJECTS-GET-CHANNEL-METADATA
- OBJECTS-SET-CHANNEL-METADATA
- OBJECTS-REMOVE-CHANNEL-METADATA
- OBJECTS-GET-MEMBERSHIPS-V2
- OBJECTS-SET-MEMBERSHIPS-V2
- OBJECTS-REMOVE-MEMBERSHIPS-V2
- OBJECTS-GET-CHANNEL-MEMBERS-V2
- OBJECTS-SET-CHANNEL-MEMBERS-V2
- OBJECTS-REMOVE-CHANNEL-MEMBERS-V2
- OBJECTS-MANAGE-MEMBERSHIPS-V2
- OBJECTS-MANAGE-CHANNEL-MEMBERS-V2
files:
- FILES-SEND-FILE
- FILES-LIST-FILES
- FILES-GET-FILE-URL
- FILES-DELETE-FILE
- FILES-DOWNLOAD-FILE
- FILES-TIMETOKEN-IN-RESPONSE
message-actions:
- MESSAGE-ACTIONS-GET
- MESSAGE-ACTIONS-ADD
- MESSAGE-ACTIONS-REMOVE
unsubscribe:
- UNSUBSCRIBE-ALL
- UNSUBSCRIBE-SUPPRESS-LEAVE-EVENTS
time:
- TIME-TIME
signal:
- SIGNAL-SEND
notify:
- REQUEST-MESSAGE-COUNT-EXCEEDED
name: unity
schema: 1
scm: github.com/pubnub/unity
supported-platforms:
-
editors:
- "LTS Release 2018.4.23f1"
- "LTS Release 2019.4.0f1"
platforms:
- "iOS player, will require iOS 7.0 or higher."
- "Android, OS 2.3.1 or later; ARMv7 (Cortex) CPU with NEON support or Atom CPU; OpenGL ES 2.0 or later."
- "Windows Phone, 8.1 or later."
- "Windows Store Apps, 8.1 or later."
- "WebGL, Any recent desktop version of Firefox, Chrome, Edge or Safari."
- "Windows 7+, with Graphics card DX9 (shader model 3.0) or DX11 with feature level 9.3 capabilities; and CPU SSE2 instruction set support."
- "Ubuntu 12.04+, with Graphics card DX9 (shader model 3.0) or DX11 with feature level 9.3 capabilities; and CPU SSE2 instruction set support."
- "Mac OS X 10.8+, with Graphics card DX9 (shader model 3.0) or DX11 with feature level 9.3 capabilities; and CPU SSE2 instruction set support."
version: "PubNub Unity SDK"
sdks:
-
full-name: PubNub Unity SDK
short-name: Unity
artifacts:
-
artifact-type: package
language: c#
tier: 2
tags:
- Desktop
- Mobile
- Game Engine
source-repository: https://github.com/pubnub/unity
documentation: https://www.pubnub.com/docs/sdks/unity
distributions:
-
distribution-type: package
distribution-repository: git release
package-name: PubNub.unitypackage
location: https://github.com/pubnub/unity/releases/download/v6.0.5/PubNub.unitypackage
requires:
-
name: "UnityEditor"
min-version: "2018.4.26f1"
license: "https://unity3d.com/legal"
license-url: "https://unity3d.com/legal"
location: "Should be installed on computer"
is-required: "Required"
-
name: "JSON .NET For Unity"
min-version: "2.0.1"
license: "Unity's standard Unity Asset Store End User License Agreement"
license-url: ""
location: "Shipped within package"
is-required: "Optional, one JSON serialization library is required"
-
name: "PeterO.Cbor"
min-version: ""
license: "Creative Commons"
license-url: ""
location: "Shipped within package"
is-required: "Required"
-
name: "MiniJSON"
min-version: ""
license: "MIT"
license-url: ""
location: "Shipped within package"
is-required: "Optional, one JSON serialization library is required"
-
name: "MarkerMetro.Unity.WinLegacy"
min-version: "1.8.0.18"
license: "MIT"
license-url: "https://raw.githubusercontent.com/MarkerMetro/MarkerMetro.Unity.WinLegacy/master/LICENSE"
location: "Shipped within package"
is-required: "Optional, only applicable for Metro"
-
name: "BouncyCastle"
min-version: "1.8.1.0"
license: "MIT"
license-url: ""
location: "Shipped within package"
is-required: "Optional, only applicable for Metro"
-
name: "BouncyCastle.Crypto"
min-version: "1.8.1.0"
license: "MIT"
license-url: ""
location: "Shipped within package"
is-required: "Optional, only applicable for Metro"
-
name: "JsonFx.Json"
min-version: ""
license: "MIT"
license-url: ""
location: "Shipped within package"
is-required: "Optional, only applicable for Metro"
supported-platforms:
supported-operating-systems:
Android:
runtime-version:
- .NET 4.x Equivalent
api-compatibility:
- .NET Core 2
- .NET 4.x
target-api-level:
- 11
minimum-api-level:
- 4.1
maximum-api-level:
- 30
ndk-verison:
- 8
target-architecture:
- armeabi-v7a
- atom
additional-requirements:
- OpenGL ES 2.0 or later.
- ARMv7 (Cortex) CPU with NEON support
iOS:
runtime-version:
- .NET 4.x Equivalent
api-compatibility:
- .NET Core 2
- .NET 4.x
minimum-os-version:
- iOS 9.0
maximum-os-version:
- iOS 14.4.2
target-architecture:
- arm64
target-devices:
- iPad
- iPhone
WebGL:
runtime-version:
- .NET 4.x Equivalent
api-compatibility:
- .NET Core 2
- .NET 4.x
target-devices:
- Chrome macOS 86.0.4240+
- Firefox macOS 83.0+
- Chrome Windows 86.0.4240+
- Firefox Windows 83.0 (x64)+
- Safari 14.0.1+
- Microsoft Edge 87.0.664.60+
Windows:
target-architecture:
- x86-64
runtime-version:
- .NET 4.x Equivalent
api-compatibility:
- .NET Core 2
- .NET 4.x
minimum-os-version:
- Windows 7 Professional
- Windows 7 Enterprise
- Windows 7 Ultimate
maximum-os-version:
- Windows 10 Enterprise
additional-requirements:
- Graphics card DX9 (shader model 3.0) or DX11 with feature level 9.3 capabilities; and CPU SSE2 instruction set support.
Linux:
target-architecture:
- x86-64
runtime-version:
- .NET 4.x Equivalent
api-compatibility:
- .NET Core 2
- .NET 4.x
maximum-os-version:
- Ubuntu 20.04 LTS
minimum-os-version:
- Ubuntu 12.04
additional-requirements:
- Graphics card DX9 (shader model 3.0) or DX11 with feature level 9.3 capabilities; and CPU SSE2 instruction set support.
macOS:
target-architecture:
- x86-64
runtime-version:
- .NET 4.x Equivalent
api-compatibility:
- .NET Core 2
- .NET 4.x
minimum-os-version:
- Mac OS X 10.8
maximum-os-version:
- macOS 10.14.6
additional-requirements:
- Graphics card DX9 (shader model 3.0) or DX11 with feature level 9.3 capabilities; and CPU SSE2 instruction set support.
-
artifact-type: api-client
language: c#
tier: 2
tags:
- Desktop
- Mobile
- Game Engine
source-repository: https://github.com/pubnub/unity
documentation: https://www.pubnub.com/docs/sdks/unity
distributions:
-
distribution-type: package
distribution-repository: git release
package-name: PubNub.unitypackage
location: https://github.com/pubnub/unity/releases/download/v6.0.5/PubNub.unitypackage
requires:
-
name: "UnityEditor"
min-version: "2018.4.26f1"
license: "https://unity3d.com/legal"
license-url: "https://unity3d.com/legal"
location: "Should be installed on computer"
is-required: "Required"
-
name: "JSON .NET For Unity"
min-version: "2.0.1"
license: "Unity's standard Unity Asset Store End User License Agreement"
license-url: ""
location: "Shipped within package"
is-required: "Optional, one JSON serialization library is required"
-
name: "PeterO.Cbor"
min-version: ""
license: "Creative Commons"
license-url: ""
location: "Shipped within package"
is-required: "Required"
-
name: "MiniJSON"
min-version: ""
license: "MIT"
license-url: ""
location: "Shipped within package"
is-required: "Optional, one JSON serialization library is required"
-
name: "MarkerMetro.Unity.WinLegacy"
min-version: "1.8.0.18"
license: "MIT"
license-url: "https://raw.githubusercontent.com/MarkerMetro/MarkerMetro.Unity.WinLegacy/master/LICENSE"
location: "Shipped within package"
is-required: "Optional, only applicable for Metro"
-
name: "BouncyCastle"
min-version: "1.8.1.0"
license: "MIT"
license-url: ""
location: "Shipped within package"
is-required: "Optional, only applicable for Metro"
-
name: "BouncyCastle.Crypto"
min-version: "1.8.1.0"
license: "MIT"
license-url: ""
location: "Shipped within package"
is-required: "Optional, only applicable for Metro"
-
name: "JsonFx.Json"
min-version: ""
license: "MIT"
license-url: ""
location: "Shipped within package"
is-required: "Optional, only applicable for Metro"
supported-platforms:
supported-operating-systems:
Android:
runtime-version:
- .NET 4.x Equivalent
api-compatibility:
- .NET Core 2
- .NET 4.x
target-api-level:
- 11
minimum-api-level:
- 4.1
maximum-api-level:
- 30
ndk-verison:
- 8
target-architecture:
- armeabi-v7a
- atom
additional-requirements:
- OpenGL ES 2.0 or later.
- ARMv7 (Cortex) CPU with NEON support
iOS:
runtime-version:
- .NET 4.x Equivalent
api-compatibility:
- .NET Core 2
- .NET 4.x
minimum-os-version:
- iOS 9.0
maximum-os-version:
- iOS 14.4.2
target-architecture:
- arm64
target-devices:
- iPad
- iPhone
WebGL:
runtime-version:
- .NET 4.x Equivalent
api-compatibility:
- .NET Core 2
- .NET 4.x
target-devices:
- Chrome macOS 86.0.4240+
- Firefox macOS 83.0+
- Chrome Windows 86.0.4240+
- Firefox Windows 83.0 (x64)+
- Safari 14.0.1+
- Microsoft Edge 87.0.664.60+
Windows:
target-architecture:
- x86-64
runtime-version:
- .NET 4.x Equivalent
api-compatibility:
- .NET Core 2
- .NET 4.x
minimum-os-version:
- Windows 7 Professional
- Windows 7 Enterprise
- Windows 7 Ultimate
maximum-os-version:
- Windows 10 Enterprise
additional-requirements:
- Graphics card DX9 (shader model 3.0) or DX11 with feature level 9.3 capabilities; and CPU SSE2 instruction set support.
Linux:
target-architecture:
- x86-64
runtime-version:
- .NET 4.x Equivalent
api-compatibility:
- .NET Core 2
- .NET 4.x
maximum-os-version:
- Ubuntu 20.04 LTS
minimum-os-version:
- Ubuntu 12.04
additional-requirements:
- Graphics card DX9 (shader model 3.0) or DX11 with feature level 9.3 capabilities; and CPU SSE2 instruction set support.
macOS:
target-architecture:
- x86-64
runtime-version:
- .NET 4.x Equivalent
api-compatibility:
- .NET Core 2
- .NET 4.x
minimum-os-version:
- Mac OS X 10.8
maximum-os-version:
- macOS 10.14.6
additional-requirements:
- Graphics card DX9 (shader model 3.0) or DX11 with feature level 9.3 capabilities; and CPU SSE2 instruction set support.