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 = new BIDConfiguration();
bidConfig.enableLogging();

The bidConfig instance should then be passed to the BidappAds at the 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 = new BIDConfiguration();
bidConfig.enableTestMode()

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

Last updated