admob icon indicating copy to clipboard operation
admob copied to clipboard

Google Ad type "App open"

Open sultanmyrza opened this issue 2 years ago • 6 comments

Can we add support for Google Ad ("App Open")?

Ad format that appears when users open or switch back to your app. Ad overlays loading screen.

Screen Shot 2022-06-17 at 9 02 23 PM

sultanmyrza avatar Jun 17 '22 13:06 sultanmyrza

You can use appRestoreResult from the @app capacitor plugin for this.

distante avatar Jun 18 '22 11:06 distante

You can use appRestoreResult from the @app capacitor plugin for this.

@distante thank you for the hint. I assume you mean something like this

App.addListener('appRestoredResult', (_) => {
    // Show "Interstitial" Ad
    await AdMob.prepareInterstitial(options);
    await AdMob.showInterstitial();

    // Show "Rewarded" Ad
    await AdMob.prepareRewardVideoAd(options);
    await AdMob.showRewardVideoAd();

   // Show "App Open" ad
   // So my question is can we add the "App Open" type of ad?
   // Probably will be something like
   // await AdMob.prepareAppOpenAd(options);
   // await AdMob.showAppOpenAd();
});

"App Open" ads look bit different

image

sultanmyrza avatar Jun 21 '22 05:06 sultanmyrza

I see, I will put the help wanted tag. For now I really do not have the time to see it :(

distante avatar Jun 21 '22 06:06 distante

@sultanmyrza This feature has been in beta for a long time, but it has been released. I'd like to implement it somewhere, but the fastest way is for @sultanmyrza to create a pull request. We welcome it.

Thanks.

rdlabo avatar Jul 04 '22 09:07 rdlabo

Hello, I got here for the same reason, but I see that it has not been implemented yet. I'm looking for the same thing for an app that I have for maps.

BETOXL avatar Jun 07 '23 16:06 BETOXL

Same problem here!!

eufelipemateus avatar Oct 12 '23 04:10 eufelipemateus