To clarify, we are talking about banners which are always the size of 320x50 and do not re-size depending on the device.
Anyway, I am using them in my game (as described above) in my game “Ultimate Blackjack 3D” written in Java where I could use AdMob SDK and never had ANY FPS issues.
As for the comment that ads should be shown when they don’t take away from the presentation, that could be said for interstitials.
The standard way apps show banners is during the whole game-play, otherwise they do not have any sense.
It seems to me the banners that corona has implemented in their admob plugin are smart banners. If they were actually normal banners, the ads would not stretch across the width of the devices to fill the space but instead would have a fixed dimension (for ex. 320x20). I have many corona apps now and I have seen that the ads do stretch all the way across the screen.
I understand your advice that we should not have an ad running during game play. However, it does seem to be a very standard practice regardless.
Can’t we take a step back here and look at what people are reporting:
* There is a substantial frame rate drop when using the admob plugin to show ads. It is so prominent that it renders apps unusable if there is any kind of movement going on in the scene.
* This is a widespread issue and not isolated to a specific incident
* There have been reports from users who have made NON-corona apps that they do not see this issue when using admob ads.
Clearly this illustrates the point that something wrong is going on with the corona admob plugin.
I think it would be beneficial for the corona staff to stop denying that there is an issue with their plugin and start investigating/fixing it.
Anyone having problems on Android with the ads not popping up until the second banner?
I’m having problems with admob on android with the first banner not showing (even though it’s reporting as shown), but not on iOS where I switch between iAds and AdMob
Noticed a large thread on the subject with Android developers in regard to the first banner not showing up
@Ernest, this is is a Google issue. One of our community members found that if you’re using Google Play game services and you’ve logged in (effectively logging in to their G+ social network) that you get the first ad.
Google is turning off V1 on August 1st. I’ve also heard that once you upgrade your AdMob dashboard, you also then have to use V2 as well. I’ve not verified that.
Well I’m not adding Google play services, but this problem does sound like a common issue in the Android community and there seems to be a work around that your developers should look into (it may also resolve your admob performance issue)
can you please get this to whomever implemented the admob v2 plugin
David Lott
Feb 3
I was having this trouble as well and found a work-around.
First thing is don’t add the ad to your layout initially! I created an AdListener() and set it to my ad view. Then in onAdLoaded, I put the ad view into my layout at that point. You have to take care to only add the ad view once, and not every time an ad is loaded of course! But this seems to make sure the ad is displayed the first time it is loaded, and not skipped.
It’s been just over a month now since this bug was reported.
It’s quite serious because if you call ads.hide() followed by ads.show() you are then waiting another 30 seconds (or whatever is set in the AdMob portal) before a new banner appears. That’s bad.
I’ve had to resort to showing banners on the start screen in order to keep calls to ads.show() to a minimum. Don’t like to show banners on the start screen but needs must…
I’ve just recently renewed my Pro subscription at the grandfathered in rate. At the top subscription rate I’m not so sure I would have renewed. All SDKs have their bugs but I can’t help but think that Corona are prioritizing new features to the detriment of existing developers’ outstanding bugs. I appreciate that all SDKs have bugs, but … too many here for my liking.
i’m aware of two issues w admob, each of which individually make it nearly useless, and together make it completely useless: the first ad doesn’t appear, and frame rate drops.
suggest engineering fully read: (as previously posted by Ernest above)
that thread, and others elsewhere, strongly suggest that it is a “layout issue”, where/when the admob view is overlaid on top of an opengl surface view (instead of nestled beside it, as would be possible with a native android java app - where the problem doesn’t seem to occur)
is it not also possible that some interplay between the adview overlaying the opengl surface is also responsible for the performance problems? (perhaps somehow interfering with opengl redraws or something?) i obviously have no clue, but just as food for thought
suggested workarounds for the first-ad-not-visible include making the ad view background transparent and/or altering how/when visible/invisible vs remove/re-add the view. Q: if upon fixing THAT problem, has the frame-rate issue been affected as well?
in any case, the implications of that thread, along with reports elsewhere of ppl with native java who DON’T see either problem with “proper” layouts, are that the problem mignt not be on google’s/admob’s end, but rather resulting from older layout strategies that are no longer appropriate.
So back to the thread topic: Admob plugin causes frame rate drop
This is really a business killer.
E.g. In our games we have a dynamic interface (nothing to fancy, the buttons zoom in-out) and when the banners are on you can see stuttering. Of course it is even worse when the objects and animations inside the gameplay start to stutter.
Now, once again I have adMob plugin integrated in my Java written game “Ultimate BlackJack 3D”, please download it and you will see there is no stuttering at all.
Also, I can’t find nowhere on the net people with other tools (e.g. Unity) reporting such behavior.
Corona Labs, please take another look into this big issue.
Regards,
Damir.
P.S. Gremlin Interactive if you are reading this, please consider making your version of the adMob plugin, I am sure if implemented right, you would have many customers.