admob

iPhone AdMob ad

Hi, I have the following two questions, I tried googling these, but didn't find any luck. Please help me. I have integrated AdMob ad to my iphone application. when the admob view is clicked, safari gets opened, and if there is any error in loading the ad, it displays an error message saying "safari cannot open the page because too man...

iPhone AdMob Video ad

Hi Guys, Please give me some ideas for the following two: I would like to test AdMob video ad in my iPhone application. For that I want to know whether there is any specific AdMob sdk call for showing video ads. Another need is, the ad needs to be closed automatically(not user closes the ad) after some period of time reached. ...

iPhone build lite and full versions - adMob problem

Hi, I'm traing to build a lite version for my app the way it is described in this post: http://stackoverflow.com/questions/549462/how-do-i-manage-building-a-lite-vs-paid-version-of-an-iphone-app After creating the two targets the full version can be built the lite version stops building with this error at the 'linking' stage: "library...

can't get Publisher ID from http://www.admob.com

Hi all I downloaded Admob Iphone SDK for building ads. I read the Readme file. It told me to get Publisher ID from http://www.admob.com. But I can't find any Publisher ID in my account on this website. pleased tell me where I can find it. Thank you very much ...

applicationWillTerminate normal exit vs ad exit iPhone question

Is it possible to determine when an app is closing whether it is done by normal means (home button) or because an ad was clicked (admob ad for this example)... Admob doesn't have anything that would help accomplish this goal does it? Any ideas where to start would be greatly appreciated... ...

how to display read advertisment in our application?

i have implemented demo application.now i want to display advertisment in my application.i have download add application.And implemented in my application.Its working properly.Now i want to display real add in my applcation.which changes is required>?please give me advise? Edie:I am using AdMob framework.so please help me. ...

Admob integration for blackberry

I am developing an application which requires Admob integration.I have googled much about it but could not find any help about it except for one question in blackberry forums and that too with no answers to it. If anyone has been successful in integrating Admob with blackberry , then please help me also in doing this.. Thanx ...

How to touch on admob view

Hi folks, I know that UIAlertView is modal and you can't touch any thing on the view when the alert is shown (except the keyboard and may be a action sheet). Now I am trapped in a situation, I have an app where the final stage of the app is a screen where an alert is displayed and in the view the admob ad is shown. Now my problem is t...

What is correct xmlns url for AdMob in Android Layout XML

I am testing the AdMob for Android SDK. I can't set the admob:testing="true" because the admob attribute is unknown. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:admob="http://schemas.android.com/apk/res/org.ifies.android" android:layout_width="fill_parent" android:layout_height="fill_parent" ...

iPhone + AdMob + remove the Ad view

Hello, I have integrated AdMob in my iPhone application. I am adding an Ad view in of my UIViewController as follows: ProgrammaticAdViewController *temp = [[ProgrammaticAdViewController alloc] init]; temp = [[ProgrammaticAdViewController alloc] initWithNibName:nil bundle:nil]; [self.view addSubview:temp.view]; So, I will be able to ...

Admob in iPhone with Tabbar and TableView

I'm having tab bar with 5 buttons. Out of 5 tabs, 2 are table views which uses navigation controller for showing sub views on click of cell. Above the tab bar, in each view I left some space for ads using "Admob". I'm adding ads using IB. But its giving EXC_BAD_ACCESS when its reaching "adMobAd = [AdMobView requestAdWithDelegate:self];" ...

Can a ViewController (AdMob AdViewController) control a view that is a subview of the controlled view of another UIViewController?

I am trying to use the IB AdMob ad in my app. I followed the instructions provided but I am getting an EXC_BAD_ACCESS from the AdMob class. I am trying to figure out what the problem is. Anyway, my question is Can a ViewController (AdMob AdViewController) control a view that is a subview of the controlled view of another UIViewControll...

AdMob and UINavigationControllers

I'm playing around with AdMob and I"m trying to get something going with an auto-rotating view inside a uinavigationcontroller. I have the ad at the top of the screen. Not sure if this is the right approach, but in my LoadView method I have: self.navigationController.view.frame = CGRectMake(0,48,320,432); The navbar appears below the ...

AdMob ad in iPhone app makes App content disappear when "done" is pressed!

Hello All, When I return from an adMob ad by hitting "done" the content of my app has disappeared ! All that remains is a background image I had attached directly to the main window. Oddly I can still hear the result of my touch events from my main screen (which is now gone). This may be related to the issue some people have had re...

Advertising API for Java ME applications?

Hello, I know AdMob is not for Java ME. Do you know any other advertising API or services that can be used in Java ME application? It might be really good if I can earn some money with my free Java ME applications. ...

AdMob for iPhone-how much do you get?

I've almost finished my app and I'm thinking about integrating AdMob there. But, in my mind, ads create bad impressions. How much do you earn by adding AdMob to your app? Is adding ads worthy of it? ...

Android: AdWhirl cannot find AdMobAdapter

Using AdMob by itself works perfectly. Using AdMob through AdWhirl causes the following problem: 23114 dalvikvm I Failed resolving Lcom/adwhirl/adapters/AdMobAdapter; interface 144 'Lcom/admob/android/ads/AdListener;' 23114 dalvikvm W Link of class 'L...

Iphone Admob Interstitials

Hi there! Can you please tell how to be properly displayed interstitial ads in iphone applications. I implemented this is exactly the same way as in Interstitials example (SDK Admob), but this always showing videos with zombies - so it should be, really? If I understand correctly, I should specify my own video url and it will be adverti...

AdMob SDK for iPad?

Trying to get my Universal app released and I rely on AdMob ads for revenue in this particular app. I'm having an issue getting AdMob support working, though I keep finding references to people actually running AdMob on their iPad Simulators. Terminating app due to uncaught exception 'AdMobInvalidLibaryVersionException', reaso...

Ads in whole app iPhone problem

I am using mobclix together with admob. The code is to big to add it in all classes. So i created a new class: Ads Everytime i want an ad in a view, i have to send the view to the ad class: - (void)initAd:(UIView *) pView { NSLog(@"ads init"); self.loadedView = pView; ..... To create an ad in a class: Ad* ad = [Ads new]; [ad...