Skip to content

Commit

Permalink
feat(deps): mobile ads sdk upgrade - ios 10.8.0 android 22.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dylancom committed Jul 24, 2023
1 parent 9de2750 commit fa0ca9e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ios/RNGoogleMobileAds/RNGoogleMobileAdsModule.mm
Original file line number Diff line number Diff line change
Expand Up @@ -117,12 +117,12 @@ - (void)setRequestConfiguration:(NSDictionary *)requestConfiguration

if (requestConfiguration[@"tagForChildDirectedTreatment"]) {
BOOL tag = [requestConfiguration[@"tagForChildDirectedTreatment"] boolValue];
[GADMobileAds.sharedInstance.requestConfiguration tagForChildDirectedTreatment:tag];
GADMobileAds.sharedInstance.requestConfiguration.tagForChildDirectedTreatment = tag;
}

if (requestConfiguration[@"tagForUnderAgeOfConsent"]) {
BOOL tag = [requestConfiguration[@"tagForUnderAgeOfConsent"] boolValue];
[GADMobileAds.sharedInstance.requestConfiguration tagForUnderAgeOfConsent:tag];
GADMobileAds.sharedInstance.requestConfiguration.tagForUnderAgeOfConsent = tag;
}

if (requestConfiguration[@"testDeviceIdentifiers"]) {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@
],
"sdkVersions": {
"ios": {
"googleMobileAds": "10.6.0",
"googleMobileAds": "10.8.0",
"googleUmp": "2.0.1"
},
"android": {
"minSdk": 19,
"targetSdk": 30,
"compileSdk": 31,
"buildTools": "31.0.0",
"googleMobileAds": "22.1.0",
"googleMobileAds": "22.2.0",
"googleUmp": "2.0.0"
}
},
Expand Down

0 comments on commit fa0ca9e

Please sign in to comment.