Questions tagged [firebase-admob]
118 questions
0
votes
1 answer
Flutter, admob dispose not working sometimes
I`m using "firebase_admob" package https://pub.dev/packages/firebase_admob
and my code is below
static void hideBannerAd() {
if (_bannerAd != null) {
_bannerAd.dispose();
_bannerAd = null;
}
}
All of my ads functions are…

dontknowhy
- 2,480
- 2
- 23
- 67
0
votes
1 answer
Flutter register native ad factory
I'm reading this doc: https://pub.dev/packages/firebase_admob
But I don't understand this:
This is done slightly differently depending on whether you are using
Embedding V1 or Embedding V2
How do I know that?
Also I found a MainActivity.kt with…

Dani
- 3,128
- 2
- 43
- 91
0
votes
1 answer
AndroidManifest gives 14 errors after adding admob
I got suddenly 14 errors when I clicked to AndroidManifest.xml in the src/main. I was trying to add admob by following instructions but I messed up. I don't know what to do. I integrated firebase and it was fine until adding admob. The instructions…

teacher-in-code
- 15
- 5
0
votes
2 answers
Firebase Admob Incompatible version with Firebase packages
These are the packages and there versions
firebase_core: ^0.7.0
firebase_auth: ^0.20.0
firebase_analytics: ^7.0.1
firebase_admob: ^0.11.0+1
cloud_firestore: ^0.16.0
meta: ^1.2.4
Gradle…

Ahmad Jaber
- 23
- 1
- 9
0
votes
0 answers
Unskippable Reward ads in flutter using admob
Is there a way to make a reward ad an unskippable ad in AdMob in flutter ??
I am using the firebase_admob library from google already but I still can skip reward ads!

Mo Ok
- 544
- 6
- 20
0
votes
0 answers
How to integrate AdColony with AdMob mediation in flutter?
I'm using firebase_admob to implement AdMob mediation in my flutter app
I've implemented the AdColony with AdMob mediation for android, I've followed these instructions:
https://developers.google.com/admob/android/mediation/adcolony
And now I'm…

PickApp Team
- 9
- 2
0
votes
0 answers
module 'firebase_admob' not found
Trying to add firebase_admob in Flutter project.
First of all I created Firebase project and then 2 apps in that project (Android and iOS).
Executed all steps (including google-services.json/GoogleService-Info.plist and appropriate source code)
In…

vetalitet
- 703
- 2
- 10
- 25
0
votes
1 answer
firebase_admob error The built failed likely due to AndroidX incompatibilities in a plugin
Error appears when performing
flutter build apk --release
and
flutter build apk
There is no error when I build the APK without having the firebase_admob
The built failed likely due to AndroidX incompatibilities in a plugin. The tool is about to try…
0
votes
1 answer
Firebase Admob in Flutter: Disposing Ads even if they're loading
I'm using the plugin: firebase_admob: ^0.9.3+4
And I want to load ads only on a specific page in a PageView. When the user moves to another page I want the ads to be disposed. However, I've encountered a problem where the ad only gets disposed if…

123432198765
- 276
- 3
- 14
0
votes
1 answer
why admob stopped working after pushing an app update?
My partner deployed an android game and integrated admob, all was working fine, but after pushing a new app update it stopped showing ads, also no error is displayed on her admob account.
any idea what it might be the error code is 3, however all…

Swapnil Sharma
- 124
- 3
0
votes
1 answer
Flutter Admob without Firebase project
I am new to Flutter and experimenting around on how to ad Admob ads in Flutter applications, found firebase_admob package, but according to the documentation we are required to create a Firebase project for that, is there any way to integrate Admob…

Altaiir
- 477
- 1
- 5
- 16
0
votes
0 answers
Nativescript app crashes on adding nativescript-admob plugin
I'm trying to add ads in my ng-nativescript app using nativescript-admob plugin.I'm following
this guide.I've done everything right but my app is crashing everytime.
here is app.component.ts
`
private androidBannerId: string =…

Manish Bhatti
- 69
- 10
0
votes
0 answers
Flutter: firebase_admob , error when calling isLoaded- PlatformException(no_ad_for_id, isAdLoaded failed, no add exists for id=444270692, null)
The ad loads and is shown successfully the first time but throws an exception if called again.
This is the code snippet for where an interstitial ad is made -
InterstitialAd createInterstitialAd() {
return InterstitialAd(
adUnitId:…

cmd_prompter
- 1,566
- 10
- 16
0
votes
1 answer
Flutter MissingPluginException(No implementation found for method loadInterstitialAd on channel plugins.flutter.io/firebase_admob)
Error that I am getting. I have seen other MissingPluginExeptions, but none for firebase_admob.
[VERBOSE-2:ui_dart_state.cc(157)] Unhandled Exception: MissingPluginException(No implementation found for method loadInterstitialAd on channel…

Josh Gimenes
- 13
- 2
- 4
0
votes
0 answers
Flutter how to integrate Admob?
I followed this tutorial on integrating AdMob in Flutter, but when I try to run my app this is the only output I get in the debug console .. And the app does not launch. I also set the AddMob app id in the AndroidManifest.xml like in the official…

tonik
- 465
- 1
- 4
- 15