react-native-google-mobile-ads 14.4.1 → 14.4.2
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.
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="utf-8"?>
|
|
2
2
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
3
|
+
xmlns:tools="http://schemas.android.com/tools"
|
|
3
4
|
package="io.invertase.googlemobileads">
|
|
4
5
|
|
|
5
6
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
@@ -19,5 +20,26 @@
|
|
|
19
20
|
<meta-data
|
|
20
21
|
android:name="com.google.android.gms.ads.flag.OPTIMIZE_AD_LOADING"
|
|
21
22
|
android:value="${appJSONGoogleMobileAdsOptimizeAdLoading}"/>
|
|
23
|
+
|
|
24
|
+
<!-- This may generate a warning during your build:
|
|
25
|
+
|
|
26
|
+
> property#android.adservices.AD_SERVICES_CONFIG@android:resource
|
|
27
|
+
> was tagged at AndroidManifest.xml:23 to replace other declarations
|
|
28
|
+
> but no other declaration present
|
|
29
|
+
|
|
30
|
+
You may safely ignore this warning.
|
|
31
|
+
|
|
32
|
+
We must include this in case you also use Firebase Analytics in some
|
|
33
|
+
of its configurations, as it may also include this file, and the two
|
|
34
|
+
will collide and cause a build error if we don't set this one to take
|
|
35
|
+
priority via replacement.
|
|
36
|
+
|
|
37
|
+
https://github.com/invertase/react-native-google-mobile-ads/issues/657
|
|
38
|
+
|
|
39
|
+
-->
|
|
40
|
+
<property
|
|
41
|
+
android:name="android.adservices.AD_SERVICES_CONFIG"
|
|
42
|
+
android:resource="@xml/gma_ad_services_config"
|
|
43
|
+
tools:replace="android:resource" />
|
|
22
44
|
</application>
|
|
23
45
|
</manifest>
|
package/lib/commonjs/version.js
CHANGED
package/lib/module/version.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "14.4.
|
|
1
|
+
export declare const SDK_VERSION = "14.4.2";
|
|
2
2
|
export { default, MobileAds } from './MobileAds';
|
|
3
3
|
export { AdsConsentDebugGeography } from './AdsConsentDebugGeography';
|
|
4
4
|
export { AdsConsentPurposes } from './AdsConsentPurposes';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "14.4.
|
|
1
|
+
export declare const version = "14.4.2";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-google-mobile-ads",
|
|
3
|
-
"version": "14.4.
|
|
3
|
+
"version": "14.4.2",
|
|
4
4
|
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
|
5
5
|
"description": "React Native Google Mobile Ads is an easy way to monetize mobile apps with targeted, in-app advertising.",
|
|
6
6
|
"main": "lib/commonjs/index.js",
|
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
export const version = '14.4.
|
|
2
|
+
export const version = '14.4.2';
|