codeplay-common 4.1.8 → 4.1.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/README.md
CHANGED
|
@@ -11,6 +11,9 @@ Make it to ionic project
|
|
|
11
11
|
Donate to get full code including many common functions
|
|
12
12
|
https://ko-fi.com/codeplay
|
|
13
13
|
|
|
14
|
+
Version 4.1.9
|
|
15
|
+
Added AdMob nextgen validation/default support for "overlappingHeight", "bannerTypeAndroidLandscape", and "bannerTypeiOSLandscape".
|
|
16
|
+
|
|
14
17
|
Version 4.1.8
|
|
15
18
|
"consentDebug: false" is added
|
|
16
19
|
|
|
@@ -83,4 +86,4 @@ Version: 4.0.1
|
|
|
83
86
|
Version : 4.0.0 (Previous version 3.2.19)
|
|
84
87
|
1) In here we are completly remove the admob-emi and use "capacitor-admob-nextgen"
|
|
85
88
|
2) Removed "modify-plugin-xml.js"
|
|
86
|
-
3)
|
|
89
|
+
3)
|
|
@@ -2760,8 +2760,11 @@ const ADMOB_NEXTGEN_DEFAULTS = {
|
|
|
2760
2760
|
collapsibleEnabled: "",
|
|
2761
2761
|
isLandScape: "",
|
|
2762
2762
|
isOverlappingEnable: "",
|
|
2763
|
+
overlappingHeight: "",
|
|
2763
2764
|
bannerTypeAndroid: "",
|
|
2765
|
+
bannerTypeAndroidLandscape: "",
|
|
2764
2766
|
bannerTypeiOS: "",
|
|
2767
|
+
bannerTypeiOSLandscape: "",
|
|
2765
2768
|
bannerTopSpaceColor: "",
|
|
2766
2769
|
interstitialLoadScreenTextColor: "",
|
|
2767
2770
|
interstitialLoadScreenBackgroundColor: "",
|
|
@@ -2865,7 +2868,6 @@ const ensureAdmobNextgenConfigDefaults = (config) => {
|
|
|
2865
2868
|
const runtimeConfig = hasObjectKeys(config?.config) ? config.config : {};
|
|
2866
2869
|
|
|
2867
2870
|
normalizedConfig.config = mergeObjects(ADMOB_NEXTGEN_DEFAULTS.config, runtimeConfig);
|
|
2868
|
-
delete normalizedConfig.config.overlappingHeight;
|
|
2869
2871
|
|
|
2870
2872
|
return normalizedConfig;
|
|
2871
2873
|
};
|
|
@@ -3624,8 +3626,11 @@ const REQUIRED_CONFIG_KEYS = [
|
|
|
3624
3626
|
"collapsibleEnabled",
|
|
3625
3627
|
"isLandScape",
|
|
3626
3628
|
"isOverlappingEnable",
|
|
3629
|
+
"overlappingHeight",
|
|
3627
3630
|
"bannerTypeAndroid",
|
|
3631
|
+
"bannerTypeAndroidLandscape",
|
|
3628
3632
|
"bannerTypeiOS",
|
|
3633
|
+
"bannerTypeiOSLandscape",
|
|
3629
3634
|
"bannerTopSpaceColor",
|
|
3630
3635
|
"interstitialLoadScreenTextColor",
|
|
3631
3636
|
"interstitialLoadScreenBackgroundColor",
|