react-native-google-mobile-ads 13.2.0 → 13.3.0

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.
@@ -178,8 +178,15 @@ public class ReactNativeGoogleMobileAdsCommon {
178
178
 
179
179
  for (Map.Entry<String, Object> entry : customTargeting.entrySet()) {
180
180
  String key = entry.getKey();
181
- String value = (String) entry.getValue();
182
- builder.addCustomTargeting(key, value);
181
+ Object value = entry.getValue();
182
+
183
+ if (value instanceof String) {
184
+ String finalValue = (String) value;
185
+ builder.addCustomTargeting(key, finalValue);
186
+ } else {
187
+ ArrayList finalValue = (ArrayList) value;
188
+ builder.addCustomTargeting(key, finalValue);
189
+ }
183
190
  }
184
191
  }
185
192
 
@@ -117,13 +117,17 @@
117
117
  [self addSubview:_banner];
118
118
  _banner.adUnitID = _unitId;
119
119
  [self setRequested:YES];
120
+ __weak typeof(self) weakSelf = self;
120
121
  _banner.paidEventHandler = ^(GADAdValue *_Nonnull value) {
121
- [self sendEvent:@"onPaid"
122
- payload:@{
123
- @"value" : value.value,
124
- @"precision" : @(value.precision),
125
- @"currency" : value.currencyCode,
126
- }];
122
+ typeof(self) strongSelf = weakSelf;
123
+ if (strongSelf) {
124
+ [strongSelf sendEvent:@"onPaid"
125
+ payload:@{
126
+ @"value" : value.value,
127
+ @"precision" : @(value.precision),
128
+ @"currency" : value.currencyCode,
129
+ }];
130
+ }
127
131
  };
128
132
  [_banner loadRequest:[RNGoogleMobileAdsCommon buildAdRequest:_request]];
129
133
  [self sendEvent:@"onSizeChange"
@@ -35,6 +35,11 @@ using namespace facebook::react;
35
35
  [super prepareForRecycle];
36
36
  static const auto defaultProps = std::make_shared<const RNGoogleMobileAdsBannerViewProps>();
37
37
  _props = defaultProps;
38
+
39
+ if (_banner) {
40
+ [_banner removeFromSuperview];
41
+ _banner = nil;
42
+ }
38
43
  }
39
44
 
40
45
  - (void)updateProps:(Props::Shared const &)props oldProps:(Props::Shared const &)oldProps {
@@ -5,6 +5,6 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.version = void 0;
7
7
  // Generated by genversion.
8
- const version = '13.2.0';
8
+ const version = '13.3.0';
9
9
  exports.version = version;
10
10
  //# sourceMappingURL=version.js.map
@@ -1,3 +1,3 @@
1
1
  // Generated by genversion.
2
- export const version = '13.2.0';
2
+ export const version = '13.3.0';
3
3
  //# sourceMappingURL=version.js.map
@@ -1,4 +1,4 @@
1
- export declare const SDK_VERSION = "13.2.0";
1
+ export declare const SDK_VERSION = "13.3.0";
2
2
  export { default, MobileAds } from './MobileAds';
3
3
  export { AdsConsentDebugGeography } from './AdsConsentDebugGeography';
4
4
  export { AdsConsentPurposes } from './AdsConsentPurposes';
@@ -71,10 +71,10 @@ export interface RequestOptions {
71
71
  /**
72
72
  * key-value pairs used for custom targeting
73
73
  *
74
- * Takes an array of string key/value pairs.
74
+ * Takes an object of keys with values of string or array of strings.
75
75
  */
76
76
  customTargeting?: {
77
- [key: string]: string;
77
+ [key: string]: string | string[];
78
78
  };
79
79
  /**
80
80
  * Sets the request agent string to identify the ad request's origin. Third party libraries that reference the Mobile
@@ -1 +1 @@
1
- {"version":3,"file":"RequestOptions.d.ts","sourceRoot":"","sources":["../../../src/types/RequestOptions.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,oBAAY,oBAAoB,GAAG,KAAK,GAAG,QAAQ,CAAC;AAEpD,MAAM,WAAW,6BAA6B;IAC5C;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B;;;;;OAKG;IACH,6BAA6B,CAAC,EAAE,OAAO,CAAC;IAExC;;;;;;;;;;;;;;;;OAgBG;IACH,aAAa,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,GAAG;QAAE,WAAW,CAAC,EAAE,oBAAoB,CAAA;KAAE,CAAC;IAEnF;;;;;;;;;;;;OAYG;IACH,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IAEpB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;;OAIG;IACH,eAAe,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;IAE5C;;;;;;;;;;;;;OAaG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;OAGG;IACH,6BAA6B,CAAC,EAAE,6BAA6B,CAAC;IAE9D;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,CAAC;CAC9B"}
1
+ {"version":3,"file":"RequestOptions.d.ts","sourceRoot":"","sources":["../../../src/types/RequestOptions.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,oBAAY,oBAAoB,GAAG,KAAK,GAAG,QAAQ,CAAC;AAEpD,MAAM,WAAW,6BAA6B;IAC5C;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B;;;;;OAKG;IACH,6BAA6B,CAAC,EAAE,OAAO,CAAC;IAExC;;;;;;;;;;;;;;;;OAgBG;IACH,aAAa,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,GAAG;QAAE,WAAW,CAAC,EAAE,oBAAoB,CAAA;KAAE,CAAC;IAEnF;;;;;;;;;;;;OAYG;IACH,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IAEpB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;;OAIG;IACH,eAAe,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,EAAE,CAAA;KAAE,CAAC;IAEvD;;;;;;;;;;;;;OAaG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;OAGG;IACH,6BAA6B,CAAC,EAAE,6BAA6B,CAAC;IAE9D;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,CAAC;CAC9B"}
@@ -1,2 +1,2 @@
1
- export declare const version = "13.2.0";
1
+ export declare const version = "13.3.0";
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": "13.2.0",
3
+ "version": "13.3.0",
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",
@@ -74,9 +74,9 @@ export interface RequestOptions {
74
74
  /**
75
75
  * key-value pairs used for custom targeting
76
76
  *
77
- * Takes an array of string key/value pairs.
77
+ * Takes an object of keys with values of string or array of strings.
78
78
  */
79
- customTargeting?: { [key: string]: string };
79
+ customTargeting?: { [key: string]: string | string[] };
80
80
 
81
81
  /**
82
82
  * Sets the request agent string to identify the ad request's origin. Third party libraries that reference the Mobile
package/src/version.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- export const version = '13.2.0';
2
+ export const version = '13.3.0';