Notes:
Improve the efficiency of developer access testing by using testing tools:
Release Notes
TopOn SDK Version | Test Tool version | Description |
---|---|---|
v6.2.70 and above(recommand) | v1.1.1 | 1. Supports the latest version of the TaKu SDK 2. Fixed known issues |
v6.2.70 and above | v1.0.8 | 1. Support Kwai platform debugging 2. Support sub-style debugging of native ads, banner ads, and interstitial ads on the Adx platform |
v6.2.70-v6.3.68 | v1.0.5 | Support online advertising ID testing (for SDK 6.3.68 and above) |
v6.2.70-v6.3.65 | v1.0.3 | Adapt to Vungle Version 7.0.0 |
v6.2.70-v6.3.65 | v1.0.1 | Compatible with org.jetbrains.kotlin:kotlin-stdlib:1.4.0 and Above version |
v6.2.70-v6.3.65 | v1.0.0 | Adaptive aggregation version< li style="text-align: left;">The testing tool is only used to detect SDK integration and cannot replace the APP's own advertising logic testing |
repositories {
maven {
url "https://jfrog.anythinktech.com/artifactory/debugger"
}
}
dependencies {
// Debugger UI Tools
implementation 'com.anythink.sdk:debugger-ui:1.1.1'
}
Copy
Note: must be in After initializing the TopOn SDK, call the following method to call up the test tool.
ATDebuggerUITest.showDebuggerUI(context);
//If you need to use the online ID test function, call the following method. To obtain the Debug Key, refer to the following online ID test
//ATDebuggerUITest.showDebuggerUI(context, "Your Debug_Key");
Function: Support long press to copy information and Current page data sharing.
ATSDK.deniedUploadDeviceInfo(DeviceDataInfo.GAID)
//If you need to use the online ID test function, call the following method. To obtain the Debug Key, refer to the following online ID test
//ATDebuggerUITest.showDebuggerUI(context, "Your Debug_Key");
ATSDK.deniedUploadDeviceInfo(DeviceDataInfo.ANDROID_ID)
TopOn SDK settings It includes two parts: privacy settings and permission settings.
Limit reported data(Only for Domestic): There is a personalized recommendation advertising switch, Set the privacy information control switch. For details, please see Domestic privacy configuration.
GDPR(Only for Overseas): For details, please see Overseas Privacy Configuration.
1. View the integration status of the advertising platform list: Integration exception, integration completed, Not integrated.
2. Check the switch to turn on debugging mode. If Gaid is empty, the debug mode function cannot be used.
3. Select the advertising platform to enter Debug Mode, and click on the upper right corner to share the advertising platform information of the current page.
4. Select the advertising style of the advertising platform for test operation.
Online ID testing supports using online configured ad slots to test ads, and supports filtering ad sources under ad slots for testing.
Note: After running the online ID test, you need to restart the app to switch back to the developer app for testing to avoid caching problems caused by the in-app test ad slots and the test tool ad slots being consistent.
Log in to background
-> Account Manager
-> Key
The sample code is as follows:
//1. 初始化SDK
ATSDK.init(context, "Your App Id", "Your App Key");
//2.设置Debug Key进入测试工具
ATDebuggerUITest.showDebuggerUI(context, "Your Debug Key");