admob native ads will be shown? - android

i have been trying to implement Native Ads from admob.
I got some sample code from Github. I tried to implement this code, and the demo code works fine. The native ads show up properly.
I then created my own Admob account and obtained an Ad Unit ID. The previous demo code for native ad did not work with this id, and I got an error with error code 0 although my created Ad Unit ID works fine for banner type ads.
Are this native ads still in beta?? when are they supposed to be out for the common developer?

Helllom I have the same problem but I dont think the real problem be the space. I'm not sure but maybe Native Ads Advanced are still in beta. I try the same code with the Ad Unit ID from admob's example and it works fine. You can try the examples code with your ad units but it doesnt work for me.

What happens to me every time I create an Admob banner ad, it takes a while to appear. So i think you should check again in an hour. I'm guessing Google is processing ad unit id and this is taking some time.
Also, they're not in beta. You should be able to use them. If you still cannot see real ads, post your code and I'll take a look at it.
I hope this helps.

I am getting the exact same error. I implemented native ad code from the example given in git hub. Now I am always getting error code '0' .
Funny thing . When I replace My ad unit Id with the ad_unit_id given in Example.
Ads is displaying in my APP. So it is Clear that my implementation is Correct.
There is some problem with admob ad unit. Its been 18 hour since I created it, I am still getting error with my ad_unit.
If it is ad_unit activation problem then , How would I know it is ready or not , or i have to create some other new ad_unit.

Related

Multiple ads load in my unity3d android game

I got a unity 3d android game, and into I load some ads.
So one of the ads is a banner, the problem is that it appears more than one banner (no idea why :( ). they all stacked up on top of each other, looks like it called.
I load the ads like this.
void Start () {
#if UNITY_ANDROID
AirScript.StartAirBanner360Ad();
#endif
maybe I need to stop it once the ad load (I don't know how to do that) or just say it that i want one at the same time, and if other comes close that is open it.
I need help guys!!!
this is the guide that my company give me to load the ads. GUIDE here!
THANKS GUYS!!
You can add more than one banners, but you have to be careful about showing and hiding banners.
Be careful, don't show overlap banner at the time of banner showing. Otherwise, it may create problem or may be rejected by Android or iOS.

Admob real ads not showing

i am having problems in showing ads on my android app. I am able to show ads using this
AdView adview = (AdView)findViewById(R.id.adView);
AdRequest adRequest = new AdRequest.Builder().
addTestDevice("127544499E3830865BD4E63234B4CC99").build();
adview.loadAd(adRequest);
But when i wanted to show real ads, i removed this
addTestDevice("127544499E3830865BD4E63234B4CC99")
but now its showing nothing, just plain white. So anybody have idea, i looked at another question but nothing works, everything this correct from my admob account and i am also having permissions,activity & meta in my manifest.
Look at your logcat, it will tell you why you aren't showing any ads. It's probably because there aren't any to show right now. This is a normal situation.
You have removed the ad id number so it has nothing to show. You are supposed to insert your number that you generated on admob page.
There is a tutorial: https://developers.google.com/mobile-ads-sdk/docs/admob/android/quick-start
I was able to solve the situation, this was happening because of the device it self. I mean only on that device later when i gave this a little time and tested it on other device. It just worked great.
Thanks everyone for the suggestion.

How to add pop-up ads in android?

how can I put pop-up ads to my android project and make it appear when the user closes/opens the app. Something like this - http://i.gyazo.com/5d3efd4f56d9a6c1bd464a9c45c1cfed.png instead of http://goo.gl/b5beFR
Thanks in advance
You can use Interstitial Ads which are available in many ads libraries i.e. AdMob or AppFlood. Interstitial Ad AdMob
as Michal z points out you can use AdMob
and load the respective Banner Size:
https://developers.google.com/mobile-ads-sdk/docs/admob/ios/banner#banner_size
Download an example from:
https://github.com/Jorgesys/Android_AdMob

Google Mobile Ads and LibGdx

I have managed to run the example file here. The tutorial for it is here.
The example file works.
However, I am having trouble placing my own Google details into it,. I have tried to:
log into Adsense
Create an ad unit
Look at the code for the ad unit to get my publisher id. It looks like the one in the example i.e. ca-app-pub-XXXXXXXXXXXXXXXX
Append the above with a slash and the ID of the ad unit, which appears to be a 10 digit number.
Use the resulting string to set the variable AD_UNIT_ID in the example
I did the above last night.
Ads do not appear when I use my AD_UNIT_ID, but they do appear when I use the example ID. What am I doing wrong?
I fixed it. I actually needed to go to https://apps.admob.com/ and use their adverts rather than Adsense.

Android Development: StartApp new sdk Ad integration does not show Ad

I have integrated the startapp sdk for the latest google policy.
They ask me to call 2 methods for showing and loading ads.
startAppAd.showAd(); // show the ad
startAppAd.loadAd(); // load the next ad
But usage of this isn't really loading any ads.
Has anyone faced this issue?
I have the right jar added to the project.
I have given my developer id and app id at proper places as mentioned by their user guide.
If someone has faced similar problems, please help me out in this.
nmvictor - please take a look at our answer to you on the other post you opened: https://stackoverflow.com/a/19488238/2900074
Did you remember to call startAppAd.onResume() in your onResume() method?
If so, where did you implement the interstitial (on what stage of your activity)?

Categories

Resources