Topon Aggregation
Preparation before access
1.Register a Topon platform account
2.Add an Android App to the Topon platform
3.Create a Topon platform ad space
4.Read Topon's documentation on creating a custom ad platform
5.Complete the creation of BeesAds media according to the following parameters
Advertising platform name
BeesAds
Interstitial Ads
com.beesads.mediation.adapters.topon.InterstitialAdapter
Rewarded ads
com.beesads.mediation.adapters.topon.RewardedAdapter
Banner Ads
com.beesads.mediation.adapters.topon.BannerAdapter
Splash screen ads
com.beesads.mediation.adapters.topon.SplashAdapter
Native Advertising
com.beesads.mediation.adapters.topon.NativeAdapter
The platform configuration is as shown below:

Add ad source to ad slot
Platform parameters are as follows:
{"app_id":"«sdk-app-id»","unit_id":"«ad-unit-id»"}
The platform configuration is as shown below:

«sdk-app-id» needs to be replaced with the AppId registered on the BeesAds platform
«ad-unit-id» needs to be replaced with the ad ID applied for by the BeesAds platform
SDK Access
Please complete the SDK quick access first
In the application-level build.gradle file (usually app/build.gradle), complete our Topon adapter access
dependencies {
// bees topon adapter
implementation 'io.github.beesads:adapter-topon:1.1.2'
// topon sdk
implementation 'com.anythink.sdk:core:6.4.17'
implementation 'com.anythink.sdk:nativead:6.4.17'
implementation 'com.anythink.sdk:banner:6.4.17'
implementation 'com.anythink.sdk:interstitial:6.4.17'
implementation 'com.anythink.sdk:rewardedvideo:6.4.17'
implementation 'com.anythink.sdk:splash:6.4.17'
}
Last updated