Additional Settings
This page covers some advanced capabilities of the Bidapp SDK. You'll discover how to activate detailed logging and explore test mode settings.
Enable Debug Logging
BIDConfiguration *bidConfig = [BIDConfiguration new];
[bidConfig enableLogging];let bidConfig = BIDConfiguration()
bidConfig.enableLogging()Enable Test Mode
BIDConfiguration *bidConfig = [BIDConfiguration new];
[bidConfig enableTestMode];let bidConfig = BIDConfiguration()
bidConfig.enableTestMode()Last updated