Very nice video...! Sir please make video on Android app with monetag ads integration in Android studio...
@TheFinalB0557 ай бұрын
What version of android-studio are you using?
@MrBecker6662 ай бұрын
this only works with kotlin?? I have a legacy app in java no matter what do it blows up with missing application id
@raulescobar57002 ай бұрын
Hi, great video, can I ask you something? what compiledSdkVersion are you using? I'm using 35 and I'm having trouble. Thanks.
@abdulkarimmbazira29288 ай бұрын
Thanks for the video. Seems like the Admob Implimentation documentation was changed as of today and its kind of confusing
@yesman3442 Жыл бұрын
Nice one.. please do another video on how to publish app to play store. Thanks.
@geniusdeveloper7797 Жыл бұрын
Yaa
@creativeme69635 ай бұрын
bro i am facing a problem . which is ad failed to load no. fill ???
@Lucky_Mirror6 ай бұрын
Hello What about Unity Ads with Jetpack Compose?
@SarwanYadav-b4g Жыл бұрын
osmm video
@sbsbsbsb49987 ай бұрын
Aap kidhar rahthe sir
@MinaMk5878 ай бұрын
Do I have to publish me to google store ?
@EasyTuto18 ай бұрын
Yes you can publish.
@margubshaikh3625 Жыл бұрын
Bhai ek web view app banao na ye sab features ke sath bhai please 1. Splash screen 2.push notifications 3.aur agar user ka Internet aap use karte waqt band ho jaye to your Internet connection not available wala massage show hue 4.Aur double tap to exit the app wala feature Bhai please
@Troopzeroboys0000Ай бұрын
How to learn coding
@MinaMk5878 ай бұрын
I have java in my code Is it a problem
@EasyTuto18 ай бұрын
No problem, You can integrate ads.
@rodrigocarneiro270511 ай бұрын
The ad appears android studio, but when I run the application the ad does not appear, does anyone know how to solve it?
@EasyTuto111 ай бұрын
Means in emulator its working, but not on real device?
@abc-xc4fj4 ай бұрын
How to solve this type error
@vijaykumarlande10 ай бұрын
Bhai mene admob implement Kiya hai sab sahi chal raha hai but me abhi modification karna chahta to mene app ko usb through phone me run Kiya to vaha bhi ads dikha raha hai mene app I'd ko bhi test I'd se change Kiya bhir bhi still showing ads koi problem to nahi na hoga agar me khud ads bar bar dekhu to
@EasyTuto110 ай бұрын
Check app id in manifest and adunit id in the ad. Both place it should be test ids. Only test ad should be displayed when testing. Google can block your admob account if you run ad frequently.
@vijaykumarlande10 ай бұрын
Agar test device ko admob console pe add Kara to chalega kya ?
@NewcastleBastien9 ай бұрын
We need native integration
@iAmHarshNayak Жыл бұрын
I have started Android development a few days ago..i watched your many video and after watch your video has boosted my confidence that I will learn a lot from you I and one day i will be a Android developer ... Literally Sir aap boht choti si video me acche se sab kuch important cover kar dete ho I salute you Respeected Sir from my ❤...And Thank you much❤
@EasyTuto1 Жыл бұрын
Keep it up. Glad to hear that. Thanks and learn more.❤️
@manosxa10 ай бұрын
Instead of a button i am deploying a scheduler in java to show interstitial every 4' but fails ScheduledThreadPoolExecutor executor = new ScheduledThreadPoolExecutor(1); executor.scheduleAtFixedRate(this::task, 0, 240, TimeUnit.SECONDS); public void task(){ if (mInterstitialAd != null) { mInterstitialAd.show(MainActivity.this); } } do you know why it is that?
@EasyTuto110 ай бұрын
What exactly is failing You should not run ads on time interval You should show interstitial ad on some events. May be some new activity opened or closed or on some feature.