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

The following code snippets show you how to enable debug logs:

BIDConfiguration *bidConfig = [BIDConfiguration new];
[bidConfig enableLogging];

The bidConfig instance should then be passed to the BidappAds on start of the SDK. See Initialize the SDK for details.

Enable Test Mode

The following code snippets show you how to enable test mode:

BIDConfiguration *bidConfig = [BIDConfiguration new];
[bidConfig enableTestMode];

The bidConfig instance should then be passed to the BidappAds on start of the SDK. See Initialize the SDK for details.

Last updated