Bidapp Ads
  • 🎁Ab_dout
  • Integration
    • iOS
      • Getting started
      • Additional Settings
      • App Policy Settings
      • Serverless Settings
      • Interstitial Ads
      • Rewarded Ads
      • Banner Ads
      • SKAdNetwork
      • SwiftUI
    • Android
      • Getting started
      • Additional Settings
      • App Policy Settings
      • Serverless Settings
      • Interstitial Ads
      • Rewarded Ads
      • Banner Ads
      • Jetpack Compose
  • PLUGINS
    • Kotlin Multiplatform
      • Getting started
      • Android Platform Setup
      • iOS Platfrom Setup
      • App Policy Settings
      • Interstitial Ads
      • Rewarded Ads
      • Banner Ads
    • Unreal Engine
      • Getting started
      • App Policy Settings
      • Interstitial Ads
      • Rewarded Ads
      • Banner Ads
      • MREC
    • Unity
      • Getting started
      • Android
      • iOS
      • App Policy Settings
      • Interstitial Ads
      • Rewarded Ads
      • Banner Ads
Powered by GitBook
On this page
  • Enable Debug Logging
  • Enable Test Mode

Was this helpful?

  1. Integration
  2. Android

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.

PreviousGetting startedNextApp Policy Settings

Last updated 11 months ago

Was this helpful?

Enable Debug Logging

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

BIDConfiguration bidConfig = new BIDConfiguration();
bidConfig.enableLogging();
val bidConfig = BIDConfiguration()
bidConfig.enableLogging()

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

Enable Test Mode

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

BIDConfiguration bidConfig = new BIDConfiguration();
bidConfig.enableTestMode()
val bidConfig = BIDConfiguration()
bidConfig.enableTestMode()

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

Initialize the SDK
Initialize the SDK