com.azerion.bluestack 2.0.1 → 3.0.0-preview2

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.
Files changed (98) hide show
  1. package/Editor/BlueStackDependencies.xml +1 -1
  2. package/Example/Azerion.BlueStack.Example.asmdef +16 -0
  3. package/Example/Azerion.BlueStack.Example.asmdef.meta +7 -0
  4. package/Example/Prefabs/NativeAd.prefab +908 -0
  5. package/Example/Prefabs/NativeAd.prefab.meta +7 -0
  6. package/Example/Prefabs/SmallNativeAd.prefab +739 -0
  7. package/Example/Prefabs/SmallNativeAd.prefab.meta +7 -0
  8. package/Example/Prefabs.meta +8 -0
  9. package/Example/Scripts/NativeAdManager.cs +208 -0
  10. package/Example/Scripts/NativeAdManager.cs.meta +11 -0
  11. package/Example/Scripts/SmallNativeAdManager.cs +181 -0
  12. package/Example/Scripts/SmallNativeAdManager.cs.meta +11 -0
  13. package/Example/Scripts.meta +8 -0
  14. package/Example.meta +8 -0
  15. package/Plugins/Android/{bluestack-unity-android-bridge-1.0.1.aar → bluestack-unity-android-bridge-2.0.0-preview1.aar} +0 -0
  16. package/Plugins/Android/{bluestack-unity-android-bridge-1.0.1.aar.meta → bluestack-unity-android-bridge-2.0.0-preview1.aar.meta} +1 -1
  17. package/Plugins/iOS/BSUInterface.h +14 -0
  18. package/Plugins/iOS/BSUInterface.m +83 -1
  19. package/Plugins/iOS/BSUNativeAd.h +32 -0
  20. package/Plugins/iOS/BSUNativeAd.h.meta +27 -0
  21. package/Plugins/iOS/BSUNativeAd.m +82 -0
  22. package/Plugins/iOS/BSUNativeAd.m.meta +37 -0
  23. package/Plugins/iOS/BSUTypes.h +12 -0
  24. package/Runtime/API/BlueStackAds.cs +4 -2
  25. package/Runtime/API/NativeAd/NativeAd.cs +182 -0
  26. package/Runtime/API/NativeAd/NativeAd.cs.meta +3 -0
  27. package/Runtime/API/NativeAd/NativeAdEventArgs.cs +14 -0
  28. package/Runtime/API/NativeAd/NativeAdEventArgs.cs.meta +11 -0
  29. package/Runtime/API/NativeAd/NativeAdInteractionHandler.cs +157 -0
  30. package/Runtime/API/NativeAd/NativeAdInteractionHandler.cs.meta +11 -0
  31. package/Runtime/API/NativeAd/NativeAdInteractionUtils.cs +122 -0
  32. package/Runtime/API/NativeAd/NativeAdInteractionUtils.cs.meta +11 -0
  33. package/Runtime/API/NativeAd/NativeAdLoader.cs +57 -0
  34. package/Runtime/API/NativeAd/NativeAdLoader.cs.meta +11 -0
  35. package/Runtime/API/NativeAd/NativeAdObject.cs +520 -0
  36. package/Runtime/API/NativeAd/NativeAdObject.cs.meta +11 -0
  37. package/Runtime/API/NativeAd/NativeAdType.cs +8 -0
  38. package/Runtime/API/NativeAd/NativeAdType.cs.meta +11 -0
  39. package/Runtime/API/NativeAd/NativeAssetID.cs +30 -0
  40. package/Runtime/API/NativeAd/NativeAssetID.cs.meta +11 -0
  41. package/Runtime/API/NativeAd/NativeClientFactoryManager.cs +32 -0
  42. package/Runtime/API/NativeAd/NativeClientFactoryManager.cs.meta +11 -0
  43. package/Runtime/API/NativeAd.meta +8 -0
  44. package/Runtime/Common/NativeAd/AdLoaderClientArgs.cs +16 -0
  45. package/Runtime/Common/NativeAd/AdLoaderClientArgs.cs.meta +11 -0
  46. package/Runtime/Common/NativeAd/AdsEventExecutor.cs +84 -0
  47. package/Runtime/Common/NativeAd/AdsEventExecutor.cs.meta +11 -0
  48. package/Runtime/Common/NativeAd/DummyNativeClient.cs +61 -0
  49. package/Runtime/Common/NativeAd/DummyNativeClient.cs.meta +11 -0
  50. package/Runtime/Common/NativeAd/NativeClientEventArgs.cs +10 -0
  51. package/Runtime/Common/NativeAd/NativeClientEventArgs.cs.meta +11 -0
  52. package/Runtime/Common/NativeAd/NativeUtils.cs +117 -0
  53. package/Runtime/Common/NativeAd/NativeUtils.cs.meta +11 -0
  54. package/Runtime/Internal/IClientsFactory.cs +5 -2
  55. package/Runtime/Internal/NativeAd/IAdLoaderClient.cs +24 -0
  56. package/Runtime/Internal/NativeAd/IAdLoaderClient.cs.meta +11 -0
  57. package/Runtime/Internal/NativeAd/INativeAdClient.cs +25 -0
  58. package/Runtime/Internal/NativeAd/INativeAdClient.cs.meta +3 -0
  59. package/Runtime/Internal/NativeAd/INativeAdInteractionHandlerClient.cs +15 -0
  60. package/Runtime/Internal/NativeAd/INativeAdInteractionHandlerClient.cs.meta +11 -0
  61. package/Runtime/Internal/NativeAd/INativeClientFactory.cs +9 -0
  62. package/Runtime/Internal/NativeAd/INativeClientFactory.cs.meta +11 -0
  63. package/Runtime/Internal/NativeAd.meta +8 -0
  64. package/Runtime/Platforms/Android/AndroidJavaObjectFactory.cs +9 -1
  65. package/Runtime/Platforms/Android/BannerAdClient.cs +1 -1
  66. package/Runtime/Platforms/Android/BlueStackClient.cs +1 -1
  67. package/Runtime/Platforms/Android/BlueStackErrorUtils.cs +1 -1
  68. package/Runtime/Platforms/Android/BlueStackNativeClassNames.cs +4 -1
  69. package/Runtime/Platforms/Android/ClientsFactory.cs +12 -1
  70. package/Runtime/Platforms/Android/InitializationStatusClient.cs +1 -1
  71. package/Runtime/Platforms/Android/InterstitialAdClient.cs +1 -1
  72. package/Runtime/Platforms/Android/NativeAdClient.cs +108 -0
  73. package/Runtime/Platforms/Android/NativeAdClient.cs.meta +3 -0
  74. package/Runtime/Platforms/Android/PreferenceClient.cs +1 -1
  75. package/Runtime/Platforms/Android/RewardedVideoAdClient.cs +1 -1
  76. package/Runtime/Platforms/Unity/BannerAdClient.cs +1 -0
  77. package/Runtime/Platforms/Unity/ClientsFactory.cs +6 -1
  78. package/Runtime/Platforms/Unity/NativeAdClient.cs +101 -0
  79. package/Runtime/Platforms/Unity/NativeAdClient.cs.meta +3 -0
  80. package/Runtime/Platforms/Unity/RewardedTimer.cs +2 -2
  81. package/Runtime/Platforms/Unity/Utils.cs +73 -0
  82. package/Runtime/Platforms/Unity/Utils.cs.meta +11 -0
  83. package/Runtime/Platforms/iOS/BannerAdClient.cs +1 -1
  84. package/Runtime/Platforms/iOS/BlueStackClient.cs +1 -1
  85. package/Runtime/Platforms/iOS/BlueStackErrorUtils.cs +1 -1
  86. package/Runtime/Platforms/iOS/ClientsFactory.cs +13 -1
  87. package/Runtime/Platforms/iOS/Externs.cs +49 -1
  88. package/Runtime/Platforms/iOS/InitializationStatusClient.cs +1 -1
  89. package/Runtime/Platforms/iOS/InterstitialAdClient.cs +1 -1
  90. package/Runtime/Platforms/iOS/NativeAdClient.cs +156 -0
  91. package/Runtime/Platforms/iOS/NativeAdClient.cs.meta +3 -0
  92. package/Runtime/Platforms/iOS/PreferenceClient.cs +1 -1
  93. package/Runtime/Platforms/iOS/RewardedVideoAdClient.cs +1 -1
  94. package/Runtime/Platforms/iOS/Utils.cs +1 -1
  95. package/Runtime/Utilities/MiniJSON.cs +581 -0
  96. package/Runtime/Utilities/MiniJSON.cs.meta +11 -0
  97. package/Runtime/Utilities.meta +8 -0
  98. package/package.json +1 -1
@@ -0,0 +1,581 @@
1
+ /*
2
+ * Copyright (c) 2013 Calvin Rien
3
+ *
4
+ * Based on the JSON parser by Patrick van Bergen
5
+ * http://techblog.procurios.nl/k/618/news/view/14605/14863/How-do-I-write-my-own-parser-for-JSON.html
6
+ *
7
+ * Simplified it so that it doesn't throw exceptions
8
+ * and can be used in Unity iPhone with maximum code stripping.
9
+ *
10
+ * Permission is hereby granted, free of charge, to any person obtaining
11
+ * a copy of this software and associated documentation files (the
12
+ * "Software"), to deal in the Software without restriction, including
13
+ * without limitation the rights to use, copy, modify, merge, publish,
14
+ * distribute, sublicense, and/or sell copies of the Software, and to
15
+ * permit persons to whom the Software is furnished to do so, subject to
16
+ * the following conditions:
17
+ *
18
+ * The above copyright notice and this permission notice shall be
19
+ * included in all copies or substantial portions of the Software.
20
+ *
21
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
24
+ * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
25
+ * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
26
+ * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
27
+ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28
+ */
29
+
30
+ using System;
31
+ using System.Collections;
32
+ using System.Collections.Generic;
33
+ using System.IO;
34
+ using System.Text;
35
+
36
+ namespace Azerion.BlueStack.MiniJSON
37
+ {
38
+ static internal class Json
39
+ {
40
+ public static object Deserialize(string json)
41
+ {
42
+ if (json == null)
43
+ {
44
+ return null;
45
+ }
46
+
47
+ return Parser.Parse(json);
48
+ }
49
+
50
+ sealed class Parser : IDisposable
51
+ {
52
+ const string WORD_BREAK = "{}[],:\"";
53
+
54
+ public static bool IsWordBreak(char c)
55
+ {
56
+ return char.IsWhiteSpace(c) || WORD_BREAK.IndexOf(c) != -1;
57
+ }
58
+
59
+ enum TOKEN
60
+ {
61
+ NONE,
62
+ CURLY_OPEN,
63
+ CURLY_CLOSE,
64
+ SQUARED_OPEN,
65
+ SQUARED_CLOSE,
66
+ COLON,
67
+ COMMA,
68
+ STRING,
69
+ NUMBER,
70
+ TRUE,
71
+ FALSE,
72
+ NULL
73
+ };
74
+
75
+ StringReader json;
76
+
77
+ Parser(string jsonString)
78
+ {
79
+ json = new StringReader(jsonString);
80
+ }
81
+
82
+ public static object Parse(string jsonString)
83
+ {
84
+ using (var instance = new Parser(jsonString))
85
+ {
86
+ return instance.ParseValue();
87
+ }
88
+ }
89
+
90
+ public void Dispose()
91
+ {
92
+ json.Dispose();
93
+ json = null;
94
+ }
95
+
96
+ Dictionary<string, object> ParseObject()
97
+ {
98
+ var table = new Dictionary<string, object>();
99
+
100
+ // ditch opening brace
101
+ json.Read();
102
+
103
+ // {
104
+ while (true)
105
+ {
106
+ switch (NextToken)
107
+ {
108
+ case TOKEN.NONE:
109
+ return null;
110
+ case TOKEN.COMMA:
111
+ continue;
112
+ case TOKEN.CURLY_CLOSE:
113
+ return table;
114
+ default:
115
+ // name
116
+ string name = ParseString();
117
+ if (name == null)
118
+ {
119
+ return null;
120
+ }
121
+
122
+ // :
123
+ if (NextToken != TOKEN.COLON)
124
+ {
125
+ return null;
126
+ }
127
+ // ditch the colon
128
+ json.Read();
129
+
130
+ // value
131
+ table[name] = ParseValue();
132
+ break;
133
+ }
134
+ }
135
+ }
136
+
137
+ List<object> ParseArray()
138
+ {
139
+ List<object> array = new List<object>();
140
+
141
+ // ditch opening bracket
142
+ json.Read();
143
+
144
+ // [
145
+ var parsing = true;
146
+ while (parsing)
147
+ {
148
+ TOKEN nextToken = NextToken;
149
+
150
+ switch (nextToken)
151
+ {
152
+ case TOKEN.NONE:
153
+ return null;
154
+ case TOKEN.COMMA:
155
+ continue;
156
+ case TOKEN.SQUARED_CLOSE:
157
+ parsing = false;
158
+ break;
159
+ default:
160
+ object value = ParseByToken(nextToken);
161
+
162
+ array.Add(value);
163
+ break;
164
+ }
165
+ }
166
+
167
+ return array;
168
+ }
169
+
170
+ object ParseValue()
171
+ {
172
+ TOKEN nextToken = NextToken;
173
+ return ParseByToken(nextToken);
174
+ }
175
+
176
+ object ParseByToken(TOKEN token)
177
+ {
178
+ switch (token)
179
+ {
180
+ case TOKEN.STRING:
181
+ return ParseString();
182
+ case TOKEN.NUMBER:
183
+ return ParseNumber();
184
+ case TOKEN.CURLY_OPEN:
185
+ return ParseObject();
186
+ case TOKEN.SQUARED_OPEN:
187
+ return ParseArray();
188
+ case TOKEN.TRUE:
189
+ return true;
190
+ case TOKEN.FALSE:
191
+ return false;
192
+ case TOKEN.NULL:
193
+ return null;
194
+ default:
195
+ return null;
196
+ }
197
+ }
198
+
199
+ string ParseString()
200
+ {
201
+ StringBuilder s = new StringBuilder();
202
+ char c;
203
+
204
+ // ditch opening quote
205
+ json.Read();
206
+
207
+ bool parsing = true;
208
+ while (parsing)
209
+ {
210
+ if (json.Peek() == -1)
211
+ {
212
+ parsing = false;
213
+ break;
214
+ }
215
+
216
+ c = NextChar;
217
+ switch (c)
218
+ {
219
+ case '"':
220
+ parsing = false;
221
+ break;
222
+ case '\\':
223
+ if (json.Peek() == -1)
224
+ {
225
+ parsing = false;
226
+ break;
227
+ }
228
+
229
+ c = NextChar;
230
+ switch (c)
231
+ {
232
+ case '"':
233
+ case '\\':
234
+ case '/':
235
+ s.Append(c);
236
+ break;
237
+ case 'b':
238
+ s.Append('\b');
239
+ break;
240
+ case 'f':
241
+ s.Append('\f');
242
+ break;
243
+ case 'n':
244
+ s.Append('\n');
245
+ break;
246
+ case 'r':
247
+ s.Append('\r');
248
+ break;
249
+ case 't':
250
+ s.Append('\t');
251
+ break;
252
+ case 'u':
253
+ var hex = new char[4];
254
+
255
+ for (int i = 0; i < 4; i++)
256
+ {
257
+ hex[i] = NextChar;
258
+ }
259
+
260
+ s.Append((char)Convert.ToInt32(new string(hex), 16));
261
+ break;
262
+ }
263
+ break;
264
+ default:
265
+ s.Append(c);
266
+ break;
267
+ }
268
+ }
269
+
270
+ return s.ToString();
271
+ }
272
+
273
+ object ParseNumber()
274
+ {
275
+ string number = NextWord;
276
+
277
+ if (number.IndexOf('.') == -1)
278
+ {
279
+ long parsedInt;
280
+ long.TryParse(number, System.Globalization.NumberStyles.Any, System.Globalization.CultureInfo.InvariantCulture, out parsedInt);
281
+ return parsedInt;
282
+ }
283
+
284
+ double parsedDouble;
285
+ double.TryParse(number, System.Globalization.NumberStyles.Any, System.Globalization.CultureInfo.InvariantCulture, out parsedDouble);
286
+ return parsedDouble;
287
+ }
288
+
289
+ void EatWhitespace()
290
+ {
291
+ while (char.IsWhiteSpace(PeekChar))
292
+ {
293
+ json.Read();
294
+
295
+ if (json.Peek() == -1)
296
+ {
297
+ break;
298
+ }
299
+ }
300
+ }
301
+
302
+ char PeekChar
303
+ {
304
+ get
305
+ {
306
+ return Convert.ToChar(json.Peek());
307
+ }
308
+ }
309
+
310
+ char NextChar
311
+ {
312
+ get
313
+ {
314
+ return Convert.ToChar(json.Read());
315
+ }
316
+ }
317
+
318
+ string NextWord
319
+ {
320
+ get
321
+ {
322
+ var word = new StringBuilder();
323
+
324
+ while (!IsWordBreak(PeekChar))
325
+ {
326
+ word.Append(NextChar);
327
+
328
+ if (json.Peek() == -1)
329
+ {
330
+ break;
331
+ }
332
+ }
333
+
334
+ return word.ToString();
335
+ }
336
+ }
337
+
338
+ TOKEN NextToken
339
+ {
340
+ get
341
+ {
342
+ EatWhitespace();
343
+
344
+ if (json.Peek() == -1)
345
+ {
346
+ return TOKEN.NONE;
347
+ }
348
+
349
+ switch (PeekChar)
350
+ {
351
+ case '{':
352
+ return TOKEN.CURLY_OPEN;
353
+ case '}':
354
+ json.Read();
355
+ return TOKEN.CURLY_CLOSE;
356
+ case '[':
357
+ return TOKEN.SQUARED_OPEN;
358
+ case ']':
359
+ json.Read();
360
+ return TOKEN.SQUARED_CLOSE;
361
+ case ',':
362
+ json.Read();
363
+ return TOKEN.COMMA;
364
+ case '"':
365
+ return TOKEN.STRING;
366
+ case ':':
367
+ return TOKEN.COLON;
368
+ case '0':
369
+ case '1':
370
+ case '2':
371
+ case '3':
372
+ case '4':
373
+ case '5':
374
+ case '6':
375
+ case '7':
376
+ case '8':
377
+ case '9':
378
+ case '-':
379
+ return TOKEN.NUMBER;
380
+ }
381
+
382
+ switch (NextWord)
383
+ {
384
+ case "false":
385
+ return TOKEN.FALSE;
386
+ case "true":
387
+ return TOKEN.TRUE;
388
+ case "null":
389
+ return TOKEN.NULL;
390
+ }
391
+
392
+ return TOKEN.NONE;
393
+ }
394
+ }
395
+ }
396
+
397
+ public static string Serialize(object obj)
398
+ {
399
+ return Serializer.Serialize(obj);
400
+ }
401
+
402
+ sealed class Serializer
403
+ {
404
+ StringBuilder builder;
405
+
406
+ Serializer()
407
+ {
408
+ builder = new StringBuilder();
409
+ }
410
+
411
+ public static string Serialize(object obj)
412
+ {
413
+ var instance = new Serializer();
414
+
415
+ instance.SerializeValue(obj);
416
+
417
+ return instance.builder.ToString();
418
+ }
419
+
420
+ void SerializeValue(object value)
421
+ {
422
+ IList asList;
423
+ IDictionary asDict;
424
+ string asStr;
425
+
426
+ if (value == null)
427
+ {
428
+ builder.Append("null");
429
+ }
430
+ else if ((asStr = value as string) != null)
431
+ {
432
+ SerializeString(asStr);
433
+ }
434
+ else if (value is bool)
435
+ {
436
+ builder.Append((bool)value ? "true" : "false");
437
+ }
438
+ else if ((asList = value as IList) != null)
439
+ {
440
+ SerializeArray(asList);
441
+ }
442
+ else if ((asDict = value as IDictionary) != null)
443
+ {
444
+ SerializeObject(asDict);
445
+ }
446
+ else if (value is char)
447
+ {
448
+ SerializeString(new string((char)value, 1));
449
+ }
450
+ else
451
+ {
452
+ SerializeOther(value);
453
+ }
454
+ }
455
+
456
+ void SerializeObject(IDictionary obj)
457
+ {
458
+ bool first = true;
459
+
460
+ builder.Append('{');
461
+
462
+ foreach (object e in obj.Keys)
463
+ {
464
+ if (!first)
465
+ {
466
+ builder.Append(',');
467
+ }
468
+
469
+ SerializeString(e.ToString());
470
+ builder.Append(':');
471
+
472
+ SerializeValue(obj[e]);
473
+
474
+ first = false;
475
+ }
476
+
477
+ builder.Append('}');
478
+ }
479
+
480
+ void SerializeArray(IList anArray)
481
+ {
482
+ builder.Append('[');
483
+
484
+ bool first = true;
485
+
486
+ foreach (object obj in anArray)
487
+ {
488
+ if (!first)
489
+ {
490
+ builder.Append(',');
491
+ }
492
+
493
+ SerializeValue(obj);
494
+
495
+ first = false;
496
+ }
497
+
498
+ builder.Append(']');
499
+ }
500
+
501
+ void SerializeString(string str)
502
+ {
503
+ builder.Append('\"');
504
+
505
+ char[] charArray = str.ToCharArray();
506
+ foreach (var c in charArray)
507
+ {
508
+ switch (c)
509
+ {
510
+ case '"':
511
+ builder.Append("\\\"");
512
+ break;
513
+ case '\\':
514
+ builder.Append("\\\\");
515
+ break;
516
+ case '\b':
517
+ builder.Append("\\b");
518
+ break;
519
+ case '\f':
520
+ builder.Append("\\f");
521
+ break;
522
+ case '\n':
523
+ builder.Append("\\n");
524
+ break;
525
+ case '\r':
526
+ builder.Append("\\r");
527
+ break;
528
+ case '\t':
529
+ builder.Append("\\t");
530
+ break;
531
+ default:
532
+ int codepoint = Convert.ToInt32(c);
533
+ if ((codepoint >= 32) && (codepoint <= 126))
534
+ {
535
+ builder.Append(c);
536
+ }
537
+ else
538
+ {
539
+ builder.Append("\\u");
540
+ builder.Append(codepoint.ToString("x4"));
541
+ }
542
+ break;
543
+ }
544
+ }
545
+
546
+ builder.Append('\"');
547
+ }
548
+
549
+ void SerializeOther(object value)
550
+ {
551
+ // NOTE: decimals lose precision during serialization.
552
+ // They always have, I'm just letting you know.
553
+ // Previously floats and doubles lost precision too.
554
+ if (value is float)
555
+ {
556
+ builder.Append(((float)value).ToString("R", System.Globalization.CultureInfo.InvariantCulture));
557
+ }
558
+ else if (value is int
559
+ || value is uint
560
+ || value is long
561
+ || value is sbyte
562
+ || value is byte
563
+ || value is short
564
+ || value is ushort
565
+ || value is ulong)
566
+ {
567
+ builder.Append(value);
568
+ }
569
+ else if (value is double
570
+ || value is decimal)
571
+ {
572
+ builder.Append(Convert.ToDouble(value).ToString("R", System.Globalization.CultureInfo.InvariantCulture));
573
+ }
574
+ else
575
+ {
576
+ SerializeString(value.ToString());
577
+ }
578
+ }
579
+ }
580
+ }
581
+ }
@@ -0,0 +1,11 @@
1
+ fileFormatVersion: 2
2
+ guid: 8b612a000219f47678f93f1692a72ecd
3
+ MonoImporter:
4
+ externalObjects: {}
5
+ serializedVersion: 2
6
+ defaultReferences: []
7
+ executionOrder: 0
8
+ icon: {instanceID: 0}
9
+ userData:
10
+ assetBundleName:
11
+ assetBundleVariant:
@@ -0,0 +1,8 @@
1
+ fileFormatVersion: 2
2
+ guid: 1471ad5f5285245e19fb1ee36d37df5d
3
+ folderAsset: yes
4
+ DefaultImporter:
5
+ externalObjects: {}
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "com.azerion.bluestack",
3
- "version": "2.0.1",
3
+ "version": "3.0.0-preview2",
4
4
  "displayName": "BlueStack",
5
5
  "description": "BlueStack SDK has been designed to give developers options for showing Ads from different ad networks.",
6
6
  "unity": "2020.3",