react-native-google-mobile-ads 11.3.0 → 11.4.1

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.
@@ -117,12 +117,14 @@ RCT_EXPORT_METHOD(openDebugMenu : (NSString *)adUnit) {
117
117
 
118
118
  if (requestConfiguration[@"tagForChildDirectedTreatment"]) {
119
119
  BOOL tag = [requestConfiguration[@"tagForChildDirectedTreatment"] boolValue];
120
- [GADMobileAds.sharedInstance.requestConfiguration tagForChildDirectedTreatment:tag];
120
+ GADMobileAds.sharedInstance.requestConfiguration.tagForChildDirectedTreatment =
121
+ [NSNumber numberWithBool:tag];
121
122
  }
122
123
 
123
124
  if (requestConfiguration[@"tagForUnderAgeOfConsent"]) {
124
125
  BOOL tag = [requestConfiguration[@"tagForUnderAgeOfConsent"] boolValue];
125
- [GADMobileAds.sharedInstance.requestConfiguration tagForUnderAgeOfConsent:tag];
126
+ GADMobileAds.sharedInstance.requestConfiguration.tagForUnderAgeOfConsent =
127
+ [NSNumber numberWithBool:tag];
126
128
  }
127
129
 
128
130
  if (requestConfiguration[@"testDeviceIdentifiers"]) {
@@ -5,6 +5,6 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.version = void 0;
7
7
  // Generated by genversion.
8
- const version = '11.3.0';
8
+ const version = '11.4.1';
9
9
  exports.version = version;
10
10
  //# sourceMappingURL=version.js.map
@@ -1,3 +1,3 @@
1
1
  // Generated by genversion.
2
- export const version = '11.3.0';
2
+ export const version = '11.4.1';
3
3
  //# sourceMappingURL=version.js.map
@@ -1,4 +1,4 @@
1
- export declare const SDK_VERSION = "11.3.0";
1
+ export declare const SDK_VERSION = "11.4.1";
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 = "11.3.0";
1
+ export declare const version = "11.4.1";
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": "11.3.0",
3
+ "version": "11.4.1",
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",
@@ -41,7 +41,7 @@
41
41
  ],
42
42
  "sdkVersions": {
43
43
  "ios": {
44
- "googleMobileAds": "10.6.0",
44
+ "googleMobileAds": "10.8.0",
45
45
  "googleUmp": "2.0.1"
46
46
  },
47
47
  "android": {
@@ -49,7 +49,7 @@
49
49
  "targetSdk": 30,
50
50
  "compileSdk": 31,
51
51
  "buildTools": "31.0.0",
52
- "googleMobileAds": "22.1.0",
52
+ "googleMobileAds": "22.2.0",
53
53
  "googleUmp": "2.0.0"
54
54
  }
55
55
  },
package/src/version.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- export const version = '11.3.0';
2
+ export const version = '11.4.1';