2

I am trying to add Adcolony in my app. Here is my code:

[AdColony configureWithAppID:myAppID
                         zoneIDs:@[myZoneID]
                        delegate:self
                         logging:YES];
[AdColony playVideoAdForZone:myZoneID withDelegate:self withV4VCPrePopup:YES andV4VCPostPopup:YES];

-(void)onAdColonyV4VCReward:(BOOL)success currencyName:(NSString *)currencyName currencyAmount:(int)amount inZone:(NSString *)zoneID
{  
    if (success) {
        // some code
    }
}

The problem is the delegate method onAdColonyV4VCReward: is never getting called.

Abdullah Shafique
  • 6,878
  • 8
  • 35
  • 70

1 Answers1

2

The solution for us was to set the app to "client side" on the Dashboard.

James Webster
  • 31,873
  • 11
  • 70
  • 114