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();
Enable Test Mode
The following code snippets show you how to enable test mode:
BIDConfiguration bidConfig = new BIDConfiguration();
bidConfig.enableTestMode()
Last updated
Was this helpful?