Guru
Guru

Reputation: 22042

Chartboost moregames page

How to avoid duplicate games entry in chart boost more games section?

enter image description here

Here is my code, and added more than one campaign to fill entries….is there any way to restrict duplicate?

-(void)initChartboost
{
       Chartboost *cb = [Chartboost sharedChartboost];
    cb.delegate = self;
    //change here
    cb.appId = CHARTBOOST_APPID;
    cb.appSignature = CHARTBOOST_APPSIGNATURE;

    [cb startSession];
    [cb cacheMoreApps];
}

-(void)showMoreGames
{
    if([self connected])
    {
        Chartboost *cb = [Chartboost sharedChartboost];        
        [cb showMoreApps];
    }
    else
    {
        UIAlertView* alert= [[[UIAlertView alloc] initWithTitle:@"No Internet Connection!" message: @"Checkout your internet connectivity!"
                                                       delegate: NULL cancelButtonTitle: @"OK" otherButtonTitles: NULL] autorelease];

        [alert show];
    }
}

Upvotes: 0

Views: 880

Answers (2)

Brian Hansen
Brian Hansen

Reputation: 206

This was a temporary glitch that Chartboost was experiencing a few days ago. It's been resolved, so you don't have to do anything to fix it!

It is fine to add the same campaign in multiple slots on the more apps page, so please feel free to set it up this way for convenience!

Full disclosure: I work for Chartboost.

Upvotes: 2

user2432641
user2432641

Reputation: 21

Try using the same campaign in the More Apps page.

Upvotes: 1

Related Questions