How to show the google admob in custom keyboard for iOS? - 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.

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.

How to remove app from admob blacklist?

My Application is not showing banners, and a person from admob contacted me saying, seems it is blacklisted by Admob because the banner was too close too the game area, I have removed the banner from that page of the app, and made it not too close on other touchable areas, how can I remove it from that black list now that the app is fixed?
Once you update your app submit an appeal to admob team - https://support.google.com/admob/answer/6195033?hl=en&ref_topic=2745287
If Admob accepts your request your ads will be displayed again. ( Email from Admob team who wrote to you should list down next steps and links in detail )

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).

Flurry Ads iOS Banners dismiss

Does anybody have experience with Flurry Ads? I am able to get their test ads to display. However, when I display a banner ad, there is no 'x' for the user to dismiss the ad itself. Does anyone know if this is intentional? Do I have to write my own code to give the user a specific banner dismissal action? Or am I doing something wrong?
I use Flurry Ads and no, there is no built-in close button on their banners. If you want the user to be able to close banners, you will need to create your own UI and implement the removeAdFromSpace method on your ad space.

iOS AdMob full screen banner does not hide

I am using AdMob ad in my application. Ads are displayed correctly.
When i tap the ad, some of the ads are opening in full screen web page in my application.When i tap the Done button, it did not close the full screen ad and ad page just frozen.
AdMob API id invoke the
- (void)adViewWillDismissScreen:(GADBannerView *)adView;
delegate method
but it never invoked the following delegate method.
- (void)adViewDidDismissScreen:(GADBannerView *)adView;
I had to kill the application in iPad2.
I had to restart the iPhone 4s device (since i could not locate my application in the running application panel to kill).
Not sure what is wrong. I could not find any details in google.
Any help is highly appreciated.
Thanks
Sasikumar JP

Resources