Flutter AdMob | How To Add Advertisements In Flutter App - Step By Step Tutorial + Source Code

  Рет қаралды 24,143

Lazy TechNo

Lazy TechNo

Күн бұрын

Пікірлер: 61
@LazyTechNo
@LazyTechNo 4 жыл бұрын
Flutter Phone Authentication: bit.ly/3nM4rhb
@EVA_Hamza
@EVA_Hamza 4 жыл бұрын
About your question 9:45 you can't display real ads on the emulator because it's just a test device and google know that, so even if you are using your real app id instead of testAdUnitId, you will get only test ads
@fayssalelansari8584
@fayssalelansari8584 3 жыл бұрын
thank you very much, using the native package is so much better than making a factory class.
@mdmasudrana3630
@mdmasudrana3630 3 жыл бұрын
Thank you so much bro . I'm tiring that others ways but there have some problem . loved it .
@Moncellence
@Moncellence 3 жыл бұрын
thank u man , very thanks,
@eGalTube
@eGalTube 3 жыл бұрын
You’re really a genius! I’m struggling to add interstitial ads in between page changes. Can you please help me? 🥰🥰
@LazyTechNo
@LazyTechNo 3 жыл бұрын
Thank you very much, what is your problem? You can dm in fb or insta
@neb542
@neb542 3 жыл бұрын
rewarded viedo add casued issue for me. All of my other buttons no longer work after going to next page
@nasserbaba9722
@nasserbaba9722 3 жыл бұрын
Thanks man you made it easier for me
@iswarrand.sivaraj6262
@iswarrand.sivaraj6262 8 ай бұрын
which firebase did you connect got full video?
@algeriennesaffaires7017
@algeriennesaffaires7017 4 жыл бұрын
Great video, I have one problem when I show ad banner in second page, and click go back quickly to add will pop up and stays on top forever, I can't find a solution for it
@LazyTechNo
@LazyTechNo 4 жыл бұрын
You can do _bannerAd.dispose(); before pop()
@algeriennesaffaires7017
@algeriennesaffaires7017 4 жыл бұрын
@@LazyTechNo thanks but that didn't work
@SteveKeddy2009
@SteveKeddy2009 4 жыл бұрын
@@algeriennesaffaires7017 call dispose at navigation(...).then((value) => Ads.hideBannerAd()) to the screen your going to so its not active when you pop back. As well call it in the initstate on your navto screen and maybe right in the build on a StatelessWidget
@rendsonc
@rendsonc 3 жыл бұрын
I'm getting this error: onAdFailedToLoad errorCode = 2 . It's like the app made the connection with the ad server, but the response don't come, and the ads doens't showed as result, that's happen with someone?
@LazyTechNo
@LazyTechNo 3 жыл бұрын
Try test ads, and it happens with some emulators. Try real device
@hc-ec6bm
@hc-ec6bm 4 жыл бұрын
Do I need to dispose native app before pushing another page? If it so how can I do that? I am wondering if it is a problem For AdMob policy to do not dispose native app from widget tree before push another page without disposing for example home page.
@LazyTechNo
@LazyTechNo 4 жыл бұрын
yes you can use, nativecontroller.dispose();
@nasserbaba9722
@nasserbaba9722 3 жыл бұрын
But what if i want to pop navigator after disposing native ad i want to diplay it again how to do that
@Brace-id1im
@Brace-id1im 3 жыл бұрын
after I change the ad unit id to my real unit id, it can't work. just return failToLoad How can I do?
@LazyTechNo
@LazyTechNo 3 жыл бұрын
Yes it shows failed in emulator, try checking in real device
@Theguy93836
@Theguy93836 3 жыл бұрын
I am also facing the same problem and I am using real device also my admob account is also approved
@paulgeorge6599
@paulgeorge6599 3 жыл бұрын
@@Theguy93836 is there solution
@doble-d1637
@doble-d1637 3 жыл бұрын
Are banner ads persistent? should I add a banner for each page or just initialize it in main.dart?
@LazyTechNo
@LazyTechNo 3 жыл бұрын
One banner is fine, and it can persist in other pages as well
@iamfunny2155
@iamfunny2155 3 жыл бұрын
Please can I edit the source code admob id to my own using apk editor
@Bfas237Forum
@Bfas237Forum 4 жыл бұрын
Before anything thanks for the code :) Your english is clean :)
@LazyTechNo
@LazyTechNo 4 жыл бұрын
Thank you so much bro 😊😊😊
@RASLAN777
@RASLAN777 2 жыл бұрын
Thanks bro
@americanmotivation8060
@americanmotivation8060 4 жыл бұрын
how can you preload the ads before showing them? to avoid policy violation: Layout Encourages Accidental Clicks - Unexpected Launch Interstitials
@girishverma1565
@girishverma1565 3 жыл бұрын
God bless you man
@pulkitprajapat7862
@pulkitprajapat7862 3 жыл бұрын
Interstitial ads only appear once. Please help.
@LazyTechNo
@LazyTechNo 3 жыл бұрын
so in this case you have to load your ad everytime and show it by, _interstitialAd = createInterstitialAd()..load(); _interstitialAd?.show(); it may take alittle delay,
@pulkitprajapat7862
@pulkitprajapat7862 3 жыл бұрын
@@LazyTechNo thanks man
@soumenghosh-oz8oh
@soumenghosh-oz8oh 9 ай бұрын
hi. how can i implement my own ad ids? thanks.
@oijgg3p
@oijgg3p 4 жыл бұрын
Hey bud, when you are using AdTargetingInfo, how can you target users that do not have premium accounts? For example, you want to have premium account for users to remove ads.. Thanks for this video, before your video, my interstitial ads did not start on the clich, but after a few seconds, also, for some reason, on ad stats when I open the app, so this video you did is amazing, keep up the great work.
@LazyTechNo
@LazyTechNo 4 жыл бұрын
Hey bro, I believe you cant remove ads from AdTargettingInfo. You can achieve that by simple condition, i.e. checking if user is premium then dont show ads, else show.
@oijgg3p
@oijgg3p 4 жыл бұрын
@@LazyTechNo Thanks bro, very helpful. If you know any github project with those kind of premium things, I would love to see it. Also, looking forward to your next video.
@dev.faizan
@dev.faizan 4 жыл бұрын
Can i add between listview.builder
@LazyTechNo
@LazyTechNo 4 жыл бұрын
Yes you can add inside listview.builder as well, Using index.
@dev.faizan
@dev.faizan 4 жыл бұрын
@@LazyTechNo ok
@mithuns8410
@mithuns8410 4 жыл бұрын
Any way to hide the ad space if ad is not loaded?
@LazyTechNo
@LazyTechNo 4 жыл бұрын
You can check if not loaded return Container();
@mithuns8410
@mithuns8410 4 жыл бұрын
@@LazyTechNo Thanks for your quick reply!! can you just explain with some sample code?
@thebullcapital
@thebullcapital 3 жыл бұрын
discontinued firebase_admob: ^0.9.0+9 now what to do now
@LazyTechNo
@LazyTechNo 3 жыл бұрын
Stay tuned for google-ads video
@Hi-tk4he
@Hi-tk4he 3 жыл бұрын
@@LazyTechNo please make video on Google Mobile ads. I want to show banner in multiple pages with one single code. Thanks
@jaydipviirani2112
@jaydipviirani2112 2 жыл бұрын
please make video on run google native ad with source code And how to load ad faster.
@aprilsri2367
@aprilsri2367 3 жыл бұрын
BannerAd class undefined. Help me please
@GArvinthKrishna
@GArvinthKrishna 4 жыл бұрын
Sir, where will I get the Implementation code (app->build.gradle-> dependencies ). 5:40
@marlegagaming1274
@marlegagaming1274 4 жыл бұрын
implementation "com.google.android.gms:play-services-ads:19.5.0" implementation "com.google.android.gms:play-services-basement:17.5.0"
@GArvinthKrishna
@GArvinthKrishna 4 жыл бұрын
Thank you... May I know, Where can I find this code.
@sujankavadi5796
@sujankavadi5796 4 жыл бұрын
Failure build failed with an exception error
@rootdev1427
@rootdev1427 4 жыл бұрын
Thank sir.
@LazyTechNo
@LazyTechNo 4 жыл бұрын
You’re welcome 😊
@SapanKumarDas
@SapanKumarDas 4 жыл бұрын
if possible? Please could you make video a Facebook login ?.Thanks
@LazyTechNo
@LazyTechNo 4 жыл бұрын
Hey bro, thank you for suggesting, i will consider this in future videos.
@LazyTechNo
@LazyTechNo 4 жыл бұрын
Video Out On Facebook Login: bit.ly/3orDeAH
@SapanKumarDas
@SapanKumarDas 4 жыл бұрын
@@LazyTechNo Thank you!
@khairallahgraphic8180
@khairallahgraphic8180 3 жыл бұрын
I hope I can add more than one unlike
@LazyTechNo
@LazyTechNo 3 жыл бұрын
Isn’t it working ?
Flutter AdMob Monetization - Banner and Interstitial Ads
57:48
Reso Coder
Рет қаралды 23 М.
How to Use Flutter Mobile Ads
12:07
Bleyl Dev
Рет қаралды 11 М.
We Attempted The Impossible 😱
00:54
Topper Guild
Рет қаралды 56 МЛН
My scorpion was taken away from me 😢
00:55
TyphoonFast 5
Рет қаралды 2,7 МЛН
Earning with Ad using Flutter | BannerAd
9:51
CodeX
Рет қаралды 24 М.
Flutter AdMob (Banner, Interstitial, Rewarded Ads)
10:08
Widget Wisdom
Рет қаралды 1,7 М.
Interstitial Ad with Flutter
6:33
CodeX
Рет қаралды 12 М.
How to EARN MONEY 🤑 with Google Admob ads 2024 ($100 a Day)
11:33
Monetize flutter app with google Admob - flutter Admob - app monetization
12:06
Add Google Ads to your Flutter App
11:58
Robert Brunhage
Рет қаралды 21 М.
We Attempted The Impossible 😱
00:54
Topper Guild
Рет қаралды 56 МЛН