Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: invertase/react-native-google-mobile-ads
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.2.0
Choose a base ref
...
head repository: invertase/react-native-google-mobile-ads
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.2.1
Choose a head ref
  • 4 commits
  • 4 files changed
  • 3 contributors

Commits on Dec 15, 2021

  1. chore: update readme branding

    Ehesp authored Dec 15, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    5ebaaee View commit details

Commits on Dec 28, 2021

  1. Copy the full SHA
    d633340 View commit details
  2. Merge pull request #46 from dylancom/fix-interstitial-crash-ios

    fix(ios): adUnitId is nil on interstitial load error
    dylancom authored Dec 28, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    22ec558 View commit details
  3. chore(release): 3.2.1 [skip ci]

    ### [3.2.1](v3.2.0...v3.2.1) (2021-12-28)
    
    ### Bug Fixes
    
    * adUnitId in sendAdevent is nil on error ([d633340](d633340))
    semantic-release-bot committed Dec 28, 2021
    Copy the full SHA
    fae0ec7 View commit details
Showing with 15 additions and 8 deletions.
  1. +7 −0 CHANGELOG.md
  2. +6 −6 README.md
  3. +1 −1 ios/RNGoogleAds/RNGoogleAdsInterstitialModule.m
  4. +1 −1 package.json
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
### [3.2.1](https://github.com/invertase/react-native-google-ads/compare/v3.2.0...v3.2.1) (2021-12-28)


### Bug Fixes

* adUnitId in sendAdevent is nil on error ([d633340](https://github.com/invertase/react-native-google-ads/commit/d633340d25671dbd15f1ef8020ca93b3f833e6c6))

## [3.2.0](https://github.com/invertase/react-native-google-ads/compare/v3.1.0...v3.2.0) (2021-12-13)


12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -55,11 +55,11 @@ React Native Google Ads is built with three key principals in mind;

---

<p>
<img align="left" width="75px" src="https://static.invertase.io/assets/invertase-logo-small.png">
<p align="left">
Built and maintained with 💛 by <a href="https://invertase.io">Invertase</a>.
<p align="center">
<a href="https://invertase.io/?utm_source=readme&utm_medium=footer&utm_campaign=react-native-google-ads">
<img width="75px" src="https://static.invertase.io/assets/invertase/invertase-rounded-avatar.png">
</a>
<p align="center">
Built and maintained by <a href="https://invertase.io/?utm_source=readme&utm_medium=footer&utm_campaign=react-native-google-ads">Invertase</a>.
</p>
</p>

---
2 changes: 1 addition & 1 deletion ios/RNGoogleAds/RNGoogleAdsInterstitialModule.m
Original file line number Diff line number Diff line change
@@ -78,7 +78,7 @@ - (void)invalidate {
[RNGoogleAdsCommon sendAdEvent:GOOGLE_ADS_EVENT_INTERSTITIAL
requestId:requestId
type:GOOGLE_ADS_EVENT_ERROR
adUnitId:ad.adUnitID
adUnitId:adUnitId
error:codeAndMessage
data:nil];
return;
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@invertase/react-native-google-ads",
"version": "3.2.0",
"version": "3.2.1",
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
"description": "React Native Google Ads is an easy way to monetize mobile apps with targeted, in-app advertising.",
"main": "lib/index.js",