Advanced Initialization Options

There may be cases where you must add additional options when initializing the DT FairBid SDK. Below are some examples:

FairBid.ConfigureForAppId("your_app_id")
.EnableLogs()
.DisableAutoRequesting()
.DisableAdvertisingId()
.SetIsChild(true)
.Start();

App ID

In the initialization code above, you must replace the your_app_id value with the your App ID . This value is passed as a string.

The DT App ID can be found in the App Management dashboard. For more information on how to obtain your App ID, click here.

setIsChild

This API must be called before initializing the SDK. For more information regarding how to flag users as children, click here

This feature is available from DT FairBid SDK v.3.33.1 and higher.

Back to Top ⇧