IOS: adMob two type of advertising - ios

In my app I want to insert a banner 768x90 and a interstitial, but when I add my app I can choose only an option (or banner or interstitial) that give me only a unit-ID... is not possible use inside an app interstitial and a banner?
thanks

If you're using an AdMob publisher ID, it can work for both banners and interstitials. If you created a mediation placement ID, it should only be used for the ad type you specified. You can create a second mediation placement with the other ad type, and use one placement for the leaderboard banner, and the other for interstitials.

Related

How to stop showing AdMob banner ad correctly?

I am building an app which will display AdMob banner ad, and when user successfully purchased an IAP item, the banner ad will never show up again, and the screen area originally occupied by the banner ad will be used by the app real functions.
The question is how to dismiss the bannerView or does not init it on the next launch up? And how to insure AdMob Sdk will never refresh the ad content in the background?
I think we cannot just hide the bannerView with just a statement:
bannerView.isHidden = true
And, as we know, AdMob SDK use IDFA. But Apple will deny an app which use IDFA but not showing Ads.
Google has guides on how to show up ads, but I cannot find information about how to stop showing ads from Google.
How to get this problem out?
The question is how to dismiss the bannerView or does not init it on
the next launch up? And how to insure AdMob Sdk will never refresh the
ad content in the background?
There are multiple ways to do this. One way I can think of is to add multiple targets in your Xcode project.
And the easier way, the more practical way - at least for me, is to prevent the requests for ads through GADRequest().
You can even do this even in AppDelegate, when setting Ids to your SDK.
That's it. You may also set nil to the delegate property of your bannerView.
And like what you've mentioned, just hide the bannerView's container, and everything should be perfect. I've worked on lots of applications with Admob, and I believe there should be no problem doing this approach.

Choosing the iAd banner

I am new to iAd. I used iAd for the first time in one of my apps .. and I didn't like the type of ads that was shown in my app. Is there anyway to choose which ads or banners can appear in my app?
or at least which category of ads?
If you're referring to add content (e.g. kid apps or car ads), you don't have a choice in which type of ads are displayed to the user. There does seem to be some tailoring of ads from Apple based on user data from app download analytics but that's entirely opaque to developers adopting iAd.
The APIs which are provided with iAd lets you show either banners either interstitial ads (which is an ad displayed on all the screen).

How to show the google admob in custom keyboard for iOS?

I have created the Custom Keyboard App for iOS. and I added the google admob banner view on keyboard.view, but it cannot show the google admob banner, and is empty.
Ad Unit ID and admob module are working exactly on other mobile apps.
Why admob cannot be displaying on custom keybaord app?
Currently, we cannot use admob under the UIInputViewController with the error message "App is in background and background loading is disabled. Ignoring request.".
Please ask Google advisor about the fix schedule for this issue.

Advertisements in blackberry app

In my blackberry application,i am displaying advertisements in screen.But only 2 ads were displaying in a screen at a time.Is there any other option to display more ads?
Please help.
I am working on both OS6 and OS7.
Thanks in advance.
Yes there is, create a seperate Object for your Banners.
The Advertising Service API can support up to two active Banner
objects on a screen at one time (only one for BlackBerry 6).
If your application displays more than one ad (even if on different
screens), you should create a separate Banner object for each ad
placement.
Reusing a Banner object in multiple locations, might cause ads to
display incorrectly.
You shouldn't attempt to remove a Banner object from a screen without
removing the containing field manager as well, as this can lead to
issues with other Banner objects.
Using a FlowFieldManager object to display Banner objects might cause
ads to display incorrectly.
(Taken from the official Blackberry Page)
Link: BB APP ADVERTISEMENT

When are these iAd delegate methods called?

Ok I am am using the delegate method
(void)bannerViewActionDidFinish:(ADBannerView *)banner
Being only test ads I cant test when it is called. I know it is called when the ad is closed with the X as i can click that in the test ad and it calls the delegate method. My question is, is it also called when the user interacts with the ad i.e clicks to download the advertised app or only when closed?
Also im trying understand the revenue from iAds.
if an ad is displayed in the bannerView on my app does that generate any revenue?
if an ad banner is clicked to load an ad does that generate any revenue?
if an ad banner is clicked to load an ad into full screen does count towards the CTR?
if an ad is loaded an interacted with does that generate any revenue and does that count towards the CTR?
Thanks
Ok I found the info i needed here is what i got:
Being only test ads I cant test when it is called. I know it is called when the ad is closed with the X as i can click that in the test ad and it calls the delegate method. My question is, is it also called when the user interacts with the ad i.e clicks to download the advertised app or only when closed?
The Delegate is called after the application is covered with an iAd and then returned to the application
Also im trying understand the revenue from iAds.
if an ad is displayed in the bannerView on my app does that generate any revenue?
If you show a developer iAd i.e a link to the AppStore to download an App, then you only get revenue when the iAd is clicked in the banner. If you show an iAd from a branded company i.e BMW you get revenue for having the iAd banner and more for it being clicked
if an ad banner is clicked to load an ad does that generate any revenue?
yes
if an ad banner is clicked to load an ad into full screen does count towards the CTR?
yes
if an ad is loaded an interacted with does that generate any revenue and does that count towards the CTR?
yes
Thanks

Resources