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. iOS

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

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

Enable Test Mode

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

BIDConfiguration *bidConfig = [BIDConfiguration new];
[bidConfig enableTestMode];
let bidConfig = BIDConfiguration()
bidConfig.enableTestMode()

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

Initialize the SDK
Initialize the SDK