You must initialize the DT FairBid SDK using your DT App ID. This only needs to be performed once, ideally when the app is launched.
App ID
In the initialization code, 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, visit our guide.
DT SDK Initializationimport com.fyber.FairBid;
FairBid.start("your_app_id", context);
// recommended
UserInfo.setUserId("user_id");
User ID
The User_ID is a unique identifier that allows you to recognize your individual users.
It is highly recommended to set a User ID, as it greatly assists with key functions such as server side rewarding, counting unique users accurately and user level reporting.
You can provide your own internal User ID. If you don’t already have one, we recommend you create one by assigning incremental numbers to each of your users, or any other similar method.
The User ID length must not exceed 256 characters.