Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Integrated chartoost sdk in to iPhone game. (Landscape game)

#define CHARTBOOST_APP_ID =@"4ff67f46f87659d86f000005"
#define CHARTBOOST_APP_SIGNATURE @"0eb950a632ec450f15095550268b6400a74d181d"

Chartboost *cb = [Chartboost sharedChartboost];
cb.appId = CHARTBOOST_APP_ID;
cb.appSignature = CHARTBOOST_APP_SIGNATURE;

[cb startSession];

[cb showInterstitial];

But it is not displaying any ads. Help me to find what's wrong with settings in Xcode or account in chart boost.

share|improve this question

3 Answers

up vote 8 down vote accepted

Perhaps there has been an error in loading them. I would implement the delegate methods as described in the docs, particularly the didFail method:

// Called before requesting an interstitial from the back-end
- (BOOL)shouldRequestInterstitial:(NSString *)location;

// Called when an interstitial has been received, before it is presented on screen
// Return NO if showing an interstitial is currently inappropriate, for example if the user has entered the main game mode
- (BOOL)shouldDisplayInterstitial:(NSString *)location;

// Called when the user dismisses the interstitial
- (void)didDismissInterstitial:(NSString *)location;

// Same as above, but only called when dismissed for a close
- (void)didCloseInterstitial:(NSString *)location;

// Same as above, but only called when dismissed for a click
- (void)didClickInterstitial:(NSString *)location;

// Called when an interstitial has failed to come back from the server
// This may be due to network connection or that no interstitial is available for that user
- (void)didFailToLoadInterstitial:(NSString *)location;
share|improve this answer
Now added above delegates, YES, didFailToLoadInterstitial method is called. What wrong? anything from my side ? if so then where is mistake? in Xcode settings Or in my chart boost account? how can i resolve this error? – Guru Jul 10 '12 at 12:16
I don't use this service, but the message says that it could be either network connection or no ad for the user. – coneybeare Jul 10 '12 at 12:41
thanks for the reply sir..but still m not getting solution. – Guru Jul 10 '12 at 13:43
I helped you farthest anybody can on SO. You need to determine if it is your network, or contact Chartboost to see why no interstitial is available. – coneybeare Jul 10 '12 at 13:47
No problem with network as other service works in same app. Ok, I can report in chart boost site. Thank you. – Guru Jul 10 '12 at 13:50

Now its working fine. We need to add publishing test campaign in our chart boost account. Here

enter image description here

«««««««««««««««««««««««««««««««««««««««

Some other way to see test Ads:

«««««««««««««««««««««««««««««««««««««««

Add your device UDID in publishing campaign.

enter image description here enter image description here

Enable test mode in App settings.

enter image description here

share|improve this answer

It may also be because the Campaign is not filling adverts and you have not added the devices as test devices to force the adverts to be filled.

This is easily missed since at first adverts may be filled - only during testing they'll just stop mysteriously.

There is a setting in Chartboost:

Edit the Campaign you are using for testing

  • Under "Campaign Logic" click the "Show Test Devices" button.
  • Click "Add Test Device" to add each device.
  • Enable each device and Save the Campaign.

(Don't forget to un-tick them when live - since I assume that missing that will mean those devices keep seeing adverts but you probably want to see how the app really behaves)

share|improve this answer
RedYeti, thanks for the info – Guru Dec 6 '12 at 14:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.