RTBSDK Android Integration
Release Notes
  • Start
    • Setup
      • Maven
      • Configure RTBSDK
    • Consent
  • Formats
    • Banner
    • Fullscreen (Interstitial)
    • Native Ads
    • Advanced
      • Separate Loading and Rendering of Banner Ads
  • Other
    • AppLovin Custom Adapter
    • AdMob Custom Events
    • Reference
      • Classes
        • RTBSDKManager
        • RTBBannerView
        • RTBBannerAdProvider
        • RTBBannerRequestConfiguration
        • RTBBannerSize
        • RTBFullscreenAd
        • RTBFullscreenRequestConfiguration
        • RTBBidInfo
        • RTBNativeAd
        • RTBNativeAdRequestConfiguration
        • RTBUserTargeting
        • RTBNativeAdLoader
      • Interfaces
        • RTBBannerViewDelegate
        • RTBBannerAdLoadDelegate
        • RTBBannerAdInteractionDelegate
        • RTBFullscreenDelegate
        • RTBNativeAdLoadDelegate
        • RTBNativeAdInteractionDelegate
      • Enumerations
        • RTBGender
  • Sample App
Powered by GitBook
On this page
  1. Other
  2. Reference
  3. Classes

RTBSDKManager

object RTBSDKManager {

    /**
     * Indicates whether the app is paid or not. Default value is null.
     */
    var isPaid: Boolean? = null

    /**
     * Indicates whether the app is child-directed (supports COPPA) or not. Default value is null.
     */
    var isChildDirected: Boolean? = null

    /**
     * Indicates whether the GDPR consent is required (if the user falls under GDPR jurisdiction). True by default.
     */
    var isGDPRApplies: Boolean = true

    /**
     * Indicates whether the test mode is enabled or not. Default value is false.
     */
    var testModeEnabled: Boolean? = false

    /**
     * Desired log level, as in [android.util.Log] class.
     */
    var logLevel: Int = Log.INFO
        set(value) {
            field = value
            RTBLogger.setUserSetLogLevel(value)
        }

    /**
     * Indicates whether the SDK should use the geo location or not. Default value is false.
     */
    var useGeoLocation: Boolean = false

     /**
     * String repesenting the current SDK version
     */
    val sdkVersion: String
}
PreviousClassesNextRTBBannerView

Last updated 1 year ago