-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
ChangeLog.txt
1314 lines (1061 loc) · 40.7 KB
/
ChangeLog.txt
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
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Google Mobile Ads Unity Plugin Change Log
**************
Version 9.4.0
**************
- To support testing with regulated US states, added the following options to UMPDebugGeography:
- RegulatedUSState
- Other
- Deprecated `DebugGeography.NotEEA`. Use `DebugGeography.Other` instead.
- Updated the GMA iOS SDK dependency version to 11.12.0.
- Updated the GMA Android SDK dependency version to 23.5.0.
- Updated UMP SDK dependency on Android to 3.1.0 and on iOS to 2.7.0.
Built and tested with:
- Google Mobile Ads Android SDK 23.5.0
- Google Mobile Ads iOS SDK 11.12.0
- Google User Messaging Platform Android SDK 3.1.0
- Google User Messaging Platform iOS SDK 2.7.0
- External Dependency Manager for Unity 1.2.183
**************
Version 9.3.0
**************
- Updated the iOS GMA SDK dependency version to 11.11.0.
Built and tested with:
- Google Mobile Ads Android SDK 23.4.0
- Google Mobile Ads iOS SDK 11.11.0
- Google User Messaging Platform Android SDK 3.0.0
- Google User Messaging Platform iOS SDK 2.6.0
- External Dependency Manager for Unity 1.2.183
**************
Version 9.2.1
**************
- Added French language support for Settings Inspector window.
- Fixed [#3510] by specifying the minSdkVersion in the library.
- Updated the dependency version for Android GMA SDK to 23.4.0 and iOS GMA SDK to 11.10.0.
- Updated iOS UMP SDK dependency to 2.6.0.
Built and tested with:
- Google Mobile Ads Android SDK 23.4.0
- Google Mobile Ads iOS SDK 11.10.0
- Google User Messaging Platform Android SDK 3.0.0
- Google User Messaging Platform iOS SDK 2.6.0
- External Dependency Manager for Unity 1.2.183
**************
Version 9.2.0
**************
- Added `IsCollapsible` API to `BannerView` to check if a collapsible banner was loaded.
- Fixed [#3369] by using appropriate LayoutParams.
- Fixed [#3455] Banner ad positioning not working on iOS.
- Updated GoogleMobileAds iOS SDK to 11.7.0.
Built and tested with:
- Google Mobile Ads Android SDK 23.2.0
- Google Mobile Ads iOS SDK 11.7.0
- Google User Messaging Platform 2.2.0
- External Dependency Manager for Unity 1.2.181
**************
Version 9.1.1
**************
- Updated GoogleMobileAds Android SDK to 23.2.0.
- Updated GoogleMobileAds iOS SDK to 11.6.0.
- Updated External Dependency Manager for Unity to 1.2.181.
- Added the AndroidJNI dependency to the UPM package.
Built and tested with:
- Google Mobile Ads Android SDK 23.2.0
- Google Mobile Ads iOS SDK 11.6.0
- Google User Messaging Platform 2.2.0
- External Dependency Manager for Unity 1.2.181
**************
Version 9.1.0
**************
- Removed the app measurement feature as Android/iOS SDKs [no longer](https://support.google.com/admob/answer/13973847) initialize App measurement.
- Fixed [#3290] by calling static putPublisherFirstPartyIdEnabled with boolean return type.
- Fixed [#3042] by explicitly adding gradle.projectsEvaluated for executing validate_dependencies gradle script.
- Fixed [#2801] incorrect value for `AdapterResponseInfo.LatencyMillis` on iOS.
- Added `GetAdUnitID` API that allows reading the ad unit id for all ad formats.
- Enabled passing AdManagerAdRequest as part of Load API for Rewarded, Rewarded Interstitial and AppOpen formats.
- Updated Google Mobile Ads SDK dependency to use v11.3.0 on iOS.
Built and tested with:
- Google Mobile Ads Android SDK 23.0.0
- Google Mobile Ads iOS SDK 11.3.0
- Google User Messaging Platform 2.2.0
- External Dependency Manager for Unity 1.2.179
**************
Version 9.0.0
**************
- Removed `SameAppKeyEnabled` in `RequestConfiguration`. Use `PublisherFirstPartyIdEnabled` instead.
- Removed `ServerSideVerificationOptions.Builder`. Use `ServerSideVerificationOptions` directly.
- Removed `RequestConfiguration.Builder`. Use `RequestConfiguration` directly.
- Removed `AdRequest.Builder`. Use `AdRequest` directly.
- Removed `AdErrorEventArgs`. Use `AdError` directly.
- Removed `AppOpenAd.Load` API that takes a `ScreenOrientation` parameter.
- Made `AdValueEventArgs` Obsolete. Use `AdValue` directly.
- Made `AdFailedToLoadEventArgs` Obsolete. Use `LoadAdError` directly.
- Updated Google Mobile Ads SDK dependency to use v11.2.0 on iOS.
- Updated the Android User Messaging Platform dependency version to 2.2.0.
- Added the `NativeOverlayAd` class to fetch and display native ads using templates.
- Using `CFPreferences` APIs for `ApplicationPreferences` instead of `NSUserDefaults` on iOS.
Built and tested with:
- Google Mobile Ads Android SDK 23.0.0
- Google Mobile Ads iOS SDK 11.2.0
- Google User Messaging Platform 2.2.0
- External Dependency Manager for Unity 1.2.179
**************
Version 8.7.0
**************
- Added PublisherPrivacyPersonalizationState property accessible via RequestConfiguration.
- Added PublisherFirstPartyIdEnabled property in RequestConfiguration.
- Deprecated SameAppKeyEnabled in RequestConfiguration. Use PublisherFirstPartyIdEnabled instead.
- Added ApplicationPreferences GetString and GetInt APIs.
- Fixed [#3048] by applying accurate path for gradle scripts on Windows.
- Updated Google Mobile Ads SDK dependency to use v22.6.0 on Android.
- Updated Google Mobile Ads SDK dependency to use v10.14 on iOS.
Built and tested with:
- Google Mobile Ads Android SDK 22.6.0
- Google Mobile Ads iOS SDK 10.14
- Google User Messaging Platform 2.1.0
- External Dependency Manager for Unity 1.2.177
**************
Version 8.6.0
**************
- Fixed [#3007] by aligning the PrivacyOptionsRequirementStatus Enum on iOS with Android Plugin.
- Fixed [#2930] for Projects using Android Gradle Plugin less than 4.2.2.
- Added Editor Options to toggle adding packagingOptions to gradle files to pick the first occurrence of META-INF/kotlinx_coroutines_core.version file.
- Added Editor Options to enable removing the property tag from the Android Manifest of the GMA Android SDK. This is enabled by default for projects using Android Gradle Plugin version 4.2.1 and lower.
- Updated Google Mobile Ads SDK dependency to use v22.5.0 on Android.
- Updated Google Mobile Ads SDK dependency to use v10.13 on iOS.
Built and tested with:
- Google Mobile Ads Android SDK 22.5.0
- Google Mobile Ads iOS SDK 10.13
- Google User Messaging Platform 2.1.0
- External Dependency Manager for Unity 1.2.177
**************
Version 8.5.3
**************
- Fixed "cannot find symbol" error when building the Android bridge project using gradle.
- Fixed [#2930] by pinning the Google Mobile Ads SDK dependency to use v22.3.0 on Android.
- Fixed [#2974] ConsentInformation.Update() wasn't working as expected on consecutive requests.
Built and tested with:
- Google Mobile Ads Android SDK 22.3.0
- Google Mobile Ads iOS SDK 10.9
- Google User Messaging Platform 2.1.0
- External Dependency Manager for Unity 1.2.176
**************
Version 8.5.2
**************
- Fixed AndroidJavaException when using AdManagerAdRequest custom targeting.
- Fixed [#2826] "No such proxy method" error within GoogleMobileAds.Ump.
- Updated Google Mobile Ads SDK dependency to use v22.3.0 on Android.
Built and tested with:
- Google Mobile Ads Android SDK 22.3.0
- Google Mobile Ads iOS SDK 10.9
- Google User Messaging Platform 2.1.0
- External Dependency Manager for Unity 1.2.176
**************
Version 8.5.1
**************
- Version 8.5.0 has been deprecated. Please upgrade to 8.5.1 instead.
- Fixed [#2866] Read enum from getPrivacyOptionsRequirementStatus.
- Removed double quotes from GoogleMobileAdsSKAdNetworkItems.xml.
Built and tested with:
- Google Mobile Ads Android SDK 22.2.0
- Google Mobile Ads iOS SDK 10.9
- Google User Messaging Platform 2.1.0
- External Dependency Manager for Unity 1.2.176
**************
Version 8.5.0
**************
- Requires apps to build against Xcode 14.1 or higher.
- This release introduces several new APIs to simplify the consent gathering
process.
- Calling `ConsentInformation.Update()` is now required before interacting
with other `ConsentInformation` public APIs. Before calling it, the following are returned:
- `ConsentStatus` returns `ConsentStatus.Unknown`
- `PrivacyOptionsRequirementStatus` returns
`PrivacyOptionsRequirementStatus.Unknown`
- `ConsentInformation.CanRequestAds` returns `false`.
- [ConsentForm](https://github.com/googleads/googleads-mobile-unity/blob/main/source/plugin/Assets/GoogleMobileAds/Ump/Api/ConsentForm.cs)
- Added method `LoadAndPresentIfRequired` to combine load and show calls.
This method is intended for the use case of showing a form if needed
when the app starts.
- Added method `ShowPrivacyOptionsForm`, to be called when users interact
with your app's privacy setting.
- [ConsentInformation](https://github.com/googleads/googleads-mobile-unity/blob/main/source/plugin/Assets/GoogleMobileAds/Ump/Api/ConsentInformation.cs)
- Added `CanRequestAds` property.
- Added `PrivacyOptionsRequirementStatus` property to indicate whether
privacy options are required to be shown in this session.
- Updated the Android User Messaging Platform dependency version to 2.1.0.
- Updated the Google Mobile Ads iOS SDK dependency version to 10.9.
- Fixed [#2840] Check if the ad references get deallocated in the iOS
plugin (bridge).
- Updated [SKAdNetwork](https://developers.google.com/admob/unity/3p-skadnetworks)
list with values from the July 13, 2023 update.
Built and tested with:
- Google Mobile Ads Android SDK 22.2.0
- Google Mobile Ads iOS SDK 10.9
- Google User Messaging Platform 2.1.0
- External Dependency Manager for Unity 1.2.176
**************
Version 8.4.1
**************
- Fixed [#2815] Setting ApplicationPreferences on Android.
Built and tested with:
- Google Mobile Ads Android SDK 22.2.0
- Google Mobile Ads iOS SDK 10.7
- Google User Messaging Platform 2.0.0
- External Dependency Manager for Unity 1.2.176
**************
Version 8.4.0
**************
- Fixed [#2757] Rewarded Interstitial events not raising on the main thread.
- Added support for rendering Ad Manager banner ad.
- Removed method call logs from showing up in Unity Editor Console.
- Deprecated ScreenOrientation parameter of the AppOpenAd Load() API. Added AppOpenAd.Load() API for loading AppOpen Ads using ad unit ID, ad request and ad load callbacks.
- Added ApplicationPreferences API to manage GMA preferences.
- Updated Google Mobile Ads SDK dependency to use v10.7 on iOS.
- Updated Google Mobile Ads SDK dependency to use v22.2.0 on Android.
Built and tested with:
- Google Mobile Ads Android SDK 22.2.0
- Google Mobile Ads iOS SDK 10.7
- Google User Messaging Platform 2.0.0
- External Dependency Manager for Unity 1.2.176
**************
Version 8.3.0
**************
- Added support to RaiseAdEventsOnUnityMainThread for UMP callbacks.
- Added support for Ad Manager interstitial ad.
- Updated Google Mobile Ads SDK dependency to use v22.1.0 on Android.
- Updated Google Mobile Ads SDK dependency to use v10.5 on iOS.
Built and tested with:
- Google Mobile Ads Android SDK 22.1.0
- Google Mobile Ads iOS SDK 10.5
- Google User Messaging Platform 2.0.0
- External Dependency Manager for Unity 1.2.176
**************
Version 8.2.0
**************
- Fixed [#2646] Android Banner 'Descendant focus' crash.
- Fixed [#2676] Raising Interstitial events on main thread.
- Deprecated builder pattern in AdRequest, RequestConfiguration and ServerSideVerificationOptions Class. Utilize fields instead.
- Added AdManagerAdRequest class to allow passing CustomTargeting, CategoryExclusions and PublisherProvidedId as part of AdManager requests.
- Updated Google Mobile Ads SDK dependency to use v10.4 on iOS.
Built and tested with:
- Google Mobile Ads Android SDK 22.0.0
- Google Mobile Ads iOS SDK 10.4
- Google User Messaging Platform 2.0.0
- External Dependency Manager for Unity 1.2.176
**************
Version 8.1.0
**************
- Requires apps to build against Xcode 14.0 or higher.
- Fixed [#2611] [UMP] Exception raised when calling Update of ConsentInformation on Android
Built and tested with:
- Google Mobile Ads Android SDK 22.0.0
- Google Mobile Ads iOS SDK 10.3
- Google User Messaging Platform 2.0.0
- External Dependency Manager for Unity 1.2.175
**************
Version 8.0.0
**************
Plugin:
- Removed obsolete APIs for AppOpenAd.
- Removed obsolete APIs for InterstitialAd.
- Added the MobileAds.RaiseAdEventsOnUnityMainThread option for raising ad events on the Unity main thread.
- Dropped support for `armv7` and `i386` architectures.
- Requires minimum iOS version 11.0.
- Fixed [#2543] NullReferenceException when UMP ConsentDebugSettings are null.
- Fixed [#2531] Xcode 13 compile time error.
- Fixed [#1779] Crash with custom Banner Ad Sizes on the Unity platform.
- Fixed [#2553] Banner position in Unity Editor to reflect Android and iOS position.
- Added support for GMA Android SDK v22.0.0. Requires using GMA Android SDK v22.0.0 or higher.
- Added support for GMA iOS SDK v10.3. Requires using GMA iOS SDK v10.3 or higher.
Built and tested with:
- Google Mobile Ads Android SDK 22.0.0
- Google Mobile Ads iOS SDK 10.3
- Google User Messaging Platform 2.0.0
- External Dependency Manager for Unity 1.2.175
**************
Version 7.4.1
**************
Plugin:
- Added support for GMA iOS SDK v10. Requires using Google Mobile Ads iOS SDK v10.0 or higher.
Built and tested with:
- Google Mobile Ads Android SDK 21.3.0
- Google Mobile Ads iOS SDK 10.0
- Google User Messaging Platform 2.0.0
- External Dependency Manager for Unity 1.2.175
**************
Version 7.4.0
**************
Plugin:
- Added OnAdClicked and OnAdImpressionRecorded events to BannerView.
- Updated all ad format APIs to have consistent nomenclature.
- Added new InterstitialAd.OnAdClicked event to interstitial ads.
- Added new InterstitialAd.Load() API for loading interstitial ads.
- Added new InterstitialAd.CanShowAd() API for checking interstitial ad state.
- Added new RewardedAd.OnAdClicked event to rewarded ads.
- Added new RewardedAd.Load() API for loading rewarded ads.
- Added new RewardedAd.CanShowAd() API for checking rewarded ad state.
- Added new RewardedInterstitialAd.OnAdClicked event to rewarded interstitial ads.
- Added new RewardedInterstitialAd.Load() API for loading rewarded interstitial ads.
- Added new RewardedInterstitialAd.CanShowAd() API for checking rewarded interstitial ad state.
- Added new AppOpenAd.OnAdClicked event to app open ads.
- Added new AppOpenAd.Load() API for loading app open ads.
- Added new AppOpenAd.CanShowAd() API for checking app open ad state.
- Fixed [#2453] and [#2450] XCode build error when using iOS SDK 9.14.0 or greater.
- Added User Messaging Platform (UMP) APIs.
Built and tested with:
- Google Mobile Ads Android SDK 21.3.0
- Google Mobile Ads iOS SDK 9.11.0
- Google User Messaging Platform 2.0.0
- External Dependency Manager for Unity 1.2.175
**************
Version 7.3.1
**************
Plugin:
- Fixed [#1799](https://github.com/googleads/googleads-mobile-unity/issues/1799) RewardedAd OnAdFailedToPresentFullScreenContent called twice.
Built and tested with:
- Google Mobile Ads Android SDK 21.3.0.
- Google Mobile Ads iOS SDK 9.11.0
- External Dependency Manager for Unity 1.2.171
**************
Version 7.3.0
**************
Plugin:
- Requires using Google Mobile Ads Android SDK v21.3.0 or higher.
- Requires using Google Mobile Ads iOS SDK v9.11.0 or higher.
- Added response information for ad networks to the [ad response](https://developers.google.com/admob/unity/response-info).
Built and tested with:
- Google Mobile Ads Android SDK 21.3.0.
- Google Mobile Ads iOS SDK 9.11.0
- External Dependency Manager for Unity 1.2.171.
**************
Version 7.2.0
**************
Plugin:
- Added settings to optimize Android initialization and ad loading thread usage.
- Fixed issue with AppOpenAd.GetResponseInfo() not completing on Android.
- Fixed display issue for AdInspector on the Unity Editor platform.
Built and tested with:
- Google Mobile Ads Android SDK 21.0.0.
- Google Mobile Ads iOS SDK 9.9.0
- External Dependency Manager for Unity 1.2.171.
**************
Version 7.1.0
**************
Plugin:
- Added AppStateEventNotifier as a better option to OnApplicationPause for app open ads.
Built and tested with:
- Google Mobile Ads Android SDK 21.0.0.
- Google Mobile Ads iOS SDK 9.0.0
- External Dependency Manager for Unity 1.2.171.
**************
Version 7.0.2
**************
Plugin:
- Added support for GMA Android SDK v21. Requires using GMA Android SDK v21.0.0 or higher.
Built and tested with:
- Google Mobile Ads Android SDK 21.0.0.
- Google Mobile Ads iOS SDK 9.0.0
- External Dependency Manager for Unity 1.2.171.
**************
Version 7.0.1
**************
Plugin:
- Fixed Github issue [1943](https://github.com/googleads/googleads-mobile-unity/issues/1943) related App Id saving.
- Fixed Github issue [2001](https://github.com/googleads/googleads-mobile-unity/issues/2001) related to Android manifest.
- Fixed Github issue [2003](https://github.com/googleads/googleads-mobile-unity/issues/2003) related to Ad Inspector crash.
- Added placeholder AdInspector for Unity editor.
Built and tested with:
- Google Play services 20.2.0
- Google Mobile Ads iOS SDK 9.0.0
- External Dependency Manager for Unity 1.2.171.
**************
Version 7.0.0
**************
Plugin:
- Added support for GMA iOS SDK v9. Requires using GMA iOS SDK v9.0.0 or higher.
- Fixed https://github.com/googleads/googleads-mobile-unity/issues/1620
- Updated to use External Dependency Manager for Unity 1.2.169.
Built and tested with:
- Google Play services 20.2.0
- Google Mobile Ads iOS SDK 9.0.0
- External Dependency Manager for Unity 1.2.171.
**************
Version 6.1.2
**************
Plugin:
- Fixed Github issue [1786](https://github.com/googleads/googleads-mobile-unity/issues/1786) related to GoogleMobileAdsSettings.
- Fixed issue related to missing GADUAdNetworkExtras.h file when using some mediation adapters.
Built and tested with:
- Google Play services 20.2.0
- Google Mobile Ads iOS SDK 8.8.0
- External Dependency Manager for Unity 1.2.165.
Known issue:
- iOS Resolver library cannot be loaded in Unity 2021.1.11 and 2021.1.12. It can be loaded properly with Unity 2021.1.10. See https://github.com/googlesamples/unity-jar-resolver/issues/441 for more information.
**************
Version 6.1.1
**************
Plugin:
- Added support for ad inspector.
Built and tested with:
- Google Play services 20.2.0
- Google Mobile Ads iOS SDK 8.8.0
- External Dependency Manager for Unity 1.2.165.
Known issue:
- iOS Resolver library cannot be loaded in Unity 2021.1.11 and 2021.1.12. It can be loaded properly with Unity 2021.1.10. See https://github.com/googlesamples/unity-jar-resolver/issues/441 for more information.
**************
Version 6.1.0
**************
Plugin:
- Fixed https://github.com/googleads/googleads-mobile-unity/issues/1620
- Added support for iOS 14+ [same app key](https://developers.google.com/admob/ios/ios14)
- Added support for App Open ads.
Built and tested with:
- Google Play services 20.2.0
- Google Mobile Ads iOS SDK 8.8.0
- External Dependency Manager for Unity 1.2.165.
Known issue:
- iOS Resolver library cannot be loaded in Unity 2021.1.11 and 2021.1.12. It can be loaded properly with Unity 2021.1.10. See https://github.com/googlesamples/unity-jar-resolver/issues/441 for more information.
**************
Version 6.0.2
**************
Plugin:
- Fixed https://github.com/googleads/googleads-mobile-unity/issues/1677 This version requires Xcode 12.4 where the previous version required Xcode 12.5.1.
- You no longer need to enable "Link frameworks statically" for the Google Mobile Ads plugin to work.
Built and tested with:
- Google Play services 20.2.0
- Google Mobile Ads iOS SDK 8.8.0
- External Dependency Manager for Unity 1.2.165.
Known issue:
- iOS Resolver library cannot be loaded in Unity 2021.1.11 and 2021.1.12. It can be loaded properly with Unity 2021.1.10. See https://github.com/googlesamples/unity-jar-resolver/issues/441 for more information.
**************
Version 6.0.1
**************
Plugin:
- Fixed https://github.com/googleads/googleads-mobile-unity/issues/1613 where build error occurs on Unity 2021.
- Fixed https://github.com/googleads/googleads-mobile-unity/issues/1616 where iOS build contains undefined symbol.
- Automatically added SKAdNetworkIdentifiers recommended by https://developers.google.com/admob/ios/ios14#skadnetwork into generated iOS builds. You can manage the list of SKAdNetworkIdentifier values by editing `Assets/GoogleMobileAds/Editor/GoogleMobileAdsSKAdNetworkItems.xml`.
Built and tested with:
- Google Play services 20.0.0
- Google Mobile Ads iOS SDK 8.2.0
- External Dependency Manager for Unity 1.2.165.
Known issue:
- iOS Resolver library cannot be loaded in Unity 2021.1.11 and 2021.1.12. It can be loaded properly with Unity 2021.1.10. See https://github.com/googlesamples/unity-jar-resolver/issues/441 for more information.
**************
Version 6.0.0
**************
Plugin:
- Added support for GMA iOS SDK v8 and GMA Android SDK v20. Requires using GMA iOS SDK v8.0.0 or higher, and GMA Android SDK 20.0.0 or higher.
- Removed MobileAds.Initialize(string appId).
- Removed Birthday, Gender, TestDevices, TagForChildDirectedTreatment properties on AdRequest. TagForChildDirectedTreatment and TestDeviceIds properties are available under RequestConfiguration..
- Removed OnAdLeavingApplication event for all formats.
- Removed MediationAdapterClassName from all formats in favor of ResponseInfo.
- Removed Message from AdErrorEventArgs class in favor of AdError.
- Removed RewardBasedVideoAd in favor of RewardedAd.
- Added support for ad load errors, please see https://developers.google.com/admob/unity/ad-load-errors for details.
- Ad Manager integration now requires providing the app ID in the Unity Editor.
- Changed package format to contain compiled assemblies in DLL format in place of the uncompiled code.
- You need to enable "Link frameworks statically" in Unity Editor -> Assets -> External Dependency Manager -> iOS Resolver -> Settings, or else the GMA plugin does not work.
Built and tested with:
- Google Play services 20.0.0
- Google Mobile Ads iOS SDK 8.2.0
- External Dependency Manager for Unity 1.2.165.
**************
Version 5.4.0
**************
Plugin:
- Add support for iOS14 with Googles `SKAdNetwork` identifiers automatically included in
`Info.plist`.
- Added the RewardedInterstitialAd format. This feature is currently in private beta. Reach out to your account manager to request access.
- Added mock ad views to enable developers to test ad placement and callback logic within the Unity editor.
- Added fix for crash that occurs when attempting to show interstitial when app is closing.
- Added fix for crash that occurs when calling `GetResponseInfo()` on iOS before ad is loaded.
Built and tested with:
- Google Play services 19.5.0
- Google Mobile Ads iOS SDK 7.68.0
- External Dependency Manager for Unity 1.2.161.
**************
Version 5.3.0
**************
Plugin:
- Add InitializationStatusClient for Init callback in Unity Editor. Fixes #1394.
- Update to Android SDK version 19.3.0
Built and tested with:
- Google Play services 19.3.0
- Google Mobile Ads iOS SDK 7.63.0
- External Dependency Manager for Unity 1.2.156.
**************
Version 5.2.0
**************
Plugin:
- Added ResponseInfo class. See
https://developers.google.com/admob/unity/response-info for usage details.
- Fixes #1307 - issue with running in Unity Editor when targeting iOS platform.
- Fixes #1287 - issue where a crash is caused in equality check when AdSize is
null.
- Moved GoogleMobileAdsPlugin to GoogleMobileAdsPlugin.androidlib to ensure manifest
is picked up when building android app in Unity 2020. Fixes issue #1310. Thanks @pipe-alt!
- Fix error messages for iOS plugin.
- Added the DisableMediationInitialization() method to MobileAds.
Warning: Calling this method may negatively impact your Google mediation performance.
This method should only be called if you include Google mediation adapters in your app, but you
won't use mediate through Google during a particular app session (for example, you are running
an A/B mediation test).
Built and tested with:
- Google Play services 19.2.0
- Google Mobile Ads iOS SDK 7.60.0
- External Dependency Manager for Unity 1.2.156.
**************
Version 5.1.0
**************
Plugin:
- Added RequestConfiguration class. See
https://developers.google.com/admob/unity/targeting for usage details.
- Fixed issue with building for IL2CPP in versions of Unity 2017 and earlier.
- Adding missing imports for Unity 5.6 build (Thanks @EldersJavas !).
- Added GoogleMobileAds assembly definition.
- Added thread safety to GADUObjectCache in iOS plugin.
- Revised project structure. If upgrading from a previous version, delete
your GoogleMobileAds/ folder before importing this plugin.
Built and tested with:
- Google Play services 19.1.0
- Google Mobile Ads iOS SDK 7.58.0
- Unity Jar Resolver 1.2.152
**************
Version 5.0.1
**************
Plugin:
- Fixed issue with externs.cpp in pre-2019 versions of Unity
Built and tested with:
- Google Play services 19.0.0
- Google Mobile Ads iOS SDK 7.56.0
- Unity Jar Resolver 1.2.136
**************
Version 5.0.0
**************
Plugin:
- Removed preprocessor directives for custom assembly support.
- Fixed IL2CPP build support on Android.
- Updated to Google Play services 19.0.0.
- Updated minimum Android API level to 16.
Built and tested with:
- Google Play services 19.0.0
- Google Mobile Ads iOS SDK 7.56.0
- Unity Jar Resolver 1.2.136
**************
Version 4.2.1
**************
Plugin:
- Fixed issue with using `AdSize.FullWidth` API for apps that only support landscape.
Built and tested with:
- Google Play services 18.3.0
- Google Mobile Ads iOS SDK 7.53.1
- Unity Jar Resolver 1.2.135
**************
Version 4.2.0
**************
Plugin:
- Added support for using AdSize.FullWidth with Adaptive banner APIs.
- Added `GetRewardItem()` API for `RewardedAd`.
- Fixed issue with Android implementation of `GetPortraitAnchoredAdaptiveBannerAdSizeWithWidth`.
Built and tested with:
- Google Play services 18.3.0
- Google Mobile Ads iOS SDK 7.53.1
- Unity Jar Resolver 1.2.135
**************
Version 4.1.0
**************
Plugin:
- Released Anchored Adaptive Banner APIs.
Built and tested with:
- Google Play services 18.2.0
- Google Mobile Ads iOS SDK 7.51.0
- Unity Jar Resolver 1.2.130
**************
Version 4.0.0
**************
Plugin:
- Breaking change: The Android library included in this plugin is now distributed as an aar, and
lives at `Assets/Plugins/Android/googlemobileads-unity.aar'. If you are upgrading from a previous
version, remove the `Assets/Plugins/Android/GoogleMobileAdsPlugin' folder prior to importing this
latest version of the plugin.
- Added proguard support on Android.
- Update Android Google Mobile Ads SDK version to 18.2.0.
- Fixed a bug where the AdSize.SMART_BANNER banner size did not work on Unity 2019.2+.
- Added assertion to stop Android builds when Google Mobile Ads settings are invalid.
Built and tested with:
- Google Play services 18.2.0
- Google Mobile Ads iOS SDK 7.50.0
- Unity Jar Resolver 1.2.125
**************
Version 3.18.3
**************
Plugin:
- Update JAR resolver.
Built and tested with:
- Google Play services 18.1.1
- Google Mobile Ads iOS SDK 7.48.0
- Unity Jar Resolver 1.2.124
**************
Version 3.18.2
**************
Plugin:
- Update to Android release 18.1.1.
Built and tested with:
- Google Play services 18.1.1
- Google Mobile Ads iOS SDK 7.47.0
- Unity Jar Resolver 1.2.123
**************
Version 3.18.1
**************
Plugin:
- Add new Initialization API.
- Fixed Android compile error with PListProcessor.
- Removed reflection for improved IL2CPP support.
- Fixed iOS dependency to not use patch version.
Built and tested with:
- Google Play services 18.1.0
- Google Mobile Ads iOS SDK 7.46.0
- Unity Jar Resolver 1.2.122
**************
Version 3.18.0
**************
Plugin:
- Added GoogleMobileAdsSettings editor UI for making Plist / manifest changes.
- Fix OnRewardedAdFailedToShow callbacks.
- Migrated android support library to androidx (JetPack) with Google Mobile Ads
SDK version 18.0.0.
Built and tested with:
- Google Play services 18.0.0
- Google Mobile Ads iOS SDK 7.45.0
- Unity Jar Resolver 1.2.119
**************
Version 3.17.0
**************
Plugin:
- Revised Banner positioning code to use gravity instead of popup window.
- Tested Banner positioning with notched devices supporting Google P APIs.
- Added Rewarded Ads ServerSideVerificationOptions (thanks @halfdevil !)
- Fixed issue with PListProcessor macro.
- Added whitelist for apache http library (thanks @RolandSzep !)
- Specified package for gender enum (thanks @armnotstrong !)
- Added mediation extras for custom events (thanks SeanPONeil !)
Built and tested with:
- Google Play services 17.2.0
- Google Mobile Ads iOS SDK 7.44.0
- Unity Jar Resolver 1.2.111
**************
Version 3.16.0
**************
Plugin:
- Added new RewardedAd APIs support.
- Added PListProcessor to assist in adding the GADApplicationIdentifier
to iOS build Info.plist.
Built and tested with:
- Google Play services 17.2.0
- Google Mobile Ads iOS SDK 7.42.0
- Unity Jar Resolver 1.2.102.0
**************
Version 3.15.1
**************
Plugin:
- Fixed crash when adding mediation extras to ad request.
Built and tested with:
- Google Play services 15.0.1
- Google Mobile Ads iOS SDK 7.32.0
- Unity Jar Resolver 1.2.88.0
**************
Version 3.15.0
**************
Plugin:
- Forward Android ad events on background thread through JNI interface
to mitigate ANRs.
Mediation packages:
- Updated AppLovin Unity package to v3.0.3.
- Updated Chartboost Unity package to v1.1.1.
- Updated Facebook Unity package to v1.1.3.
- Updated IronSource Unity package to v1.0.2.
- Updated Nend Unity package to v2.0.0.
- Updated Tapjoy Unity package to v2.0.0.
Built and tested with:
- Google Play services 15.0.1
- Google Mobile Ads iOS SDK 7.31.0
- Unity Jar Resolver 1.2.79.0
**************
Version 3.14.0
**************
Plugin:
- Fixed Google Play dependencies version conflict with Firebase plugins.
Mediation packages:
- Updated AdColony Unity package to v1.2.1.
- Updated AppLovin Unity package to v3.0.2.
- Updated Chartboost Unity package to v1.1.0.
- Updated Facebook Unity package to v1.1.2.
- Updated InMobi Unity package to v2.1.0.
- Updated IronSource Unity package to v1.0.1.
- Updated Maio Unity package to v1.1.0.
- Updated MoPub Unity package to v2.1.0.
- Updated MyTarget Unity package to v2.1.0.
- Updated Nend Unity package to v1.0.2.
- Updated Tapjoy Unity package to v1.1.1.
- Updated UnityAds Unity package to v1.1.3.
Built and tested with:
- Google Play services 15.0.1
- Google Mobile Ads iOS SDK 7.31.0
- Unity Jar Resolver 1.2.75.0
**************
Version 3.13.1
**************
Plugin:
- Fixed issue where banner ads reposition to top of screen after a full
screen ad is displayed.
Built and tested with:
- Google Play services 12.0.1
- Google Mobile Ads iOS SDK 7.30.0
- Unity Jar Resolver 1.2.64.0
**************
Version 3.13.0
**************
Plugin:
- Added `OnAdCompleted` ad event to rewarded video ads.
- Removed support for Native Ads Express.
Mediation packages:
- Added Chartboost mediation support package.
- Added MoPub mediation support package.
- Updated AppLovin Unity package to v1.2.1.
- Updated AdColony Unity package to v1.0.1.
- Updated myTarget Unity package to v2.0.0.
Built and tested with:
- Google Play services 12.0.1
- Google Mobile Ads iOS SDK 7.30.0
- Unity Jar Resolver 1.2.64.0
**************
Version 3.12.0
**************
Plugin:
- Added `setUserId` API to rewarded video ads to identify users in
server-to-server reward callbacks.
- Removed functionality that forced ad events to be invoked on the
main thread.
Mediation packages:
- Updated maio Unity package to v1.0.1.
Built and tested with:
- Google Play services 11.8.0
- Google Mobile Ads iOS SDK 7.29.0
- Unity Jar Resolver 1.2.61.0
**************
Version 3.11.1
**************
Plugin:
- Fixed issue where calling GetWidthInPixels() or GetHeightInPixels() resulted
in a null pointer exception.
Mediation packages:
- Added Facebook mediation support package.
Built and tested with:
- Google Play services 11.8.0
- Google Mobile Ads iOS SDK 7.28.0
- Unity Jar Resolver 1.2.61.0
**************
Version 3.11.0
**************
Plugin:
- Updated Android ad events to be invoked on the main thread.
- Added `MobileAds.SetiOSAppPauseOnBackground()` method to pause iOS apps when
displaying full screen ads.
- Fixed issue were banners repositioned incorrectly following an orientation
change.
Mediation packages:
- Added maio mediation support package.
- Added nend mediation support package.
Built and tested with:
- Google Play services 11.8.0
- Google Mobile Ads iOS SDK 7.27.0
- Unity Jar Resolver 1.2.61.0
**************
Version 3.10.0
**************
Plugin:
- Updated Smart Banner positioning to render within safe area on iOS 11.
- Added API to return height and width of BannerView in pixels.
- Added SetPosition method to reposition banner ads.
- Updated AppLovin Unity mediation package to support AppLovin initialization
integration.
Mediation packages:
- Added InMobi mediation support package.
- Added Tapjoy mediation support package.
- Added Unity Ads mediation support package.
- Added myTarget mediation support package.
Built and tested with:
- Google Play services 11.6.2
- Google Mobile Ads iOS SDK 7.27.0
- Unity Jar Resolver 1.2.59.0
*************
Version 3.9.0
*************
Plugin:
- Implemented workaround for issue where ad views are rendered in incorrect
position.
- Resolved compatibility issues with Gradle 4.
- Resolved comnpatilbity issues with older versions of Xcode.
Mediation packages:
- Added API for video ad volume control.
- Added AdColony mediation support package.
- Added AppLovin mediation support package.
Built and tested with:
- Google Play services 11.6.0
- Google Mobile Ads iOS SDK 7.25.0
- Unity Jar Resolver 1.2.59.0
*************
Version 3.8.0
*************