Integration
BIGO Ads adapter for CloudX Android SDK. Supports Banner, MREC, Interstitial, and Rewarded.
For CloudX dashboard mapping and BIGO Ads-side ID setup, see the BIGO Ads bidder guide. This page covers Android-specific integration details only.
Install
dependencies {
implementation("io.cloudx:adapter-bigo:6.0.1.0")
}dependencies {
implementation 'io.cloudx:adapter-bigo:6.0.1.0'
}The BIGO Ads SDK dependency, com.bigossp:bigo-ads, is published on Maven Central. No additional Maven repository is required.
Network Security Configuration
The BIGO Ads SDK serves some creative assets from a local loopback server on the device to reduce ad latency. Allow cleartext traffic to 127.0.0.1 in your app’s network security configuration and reference that file from the <application> element of AndroidManifest.xml:
<network-security-config>
<domain-config cleartextTrafficPermitted="true">
<domain>127.0.0.1</domain>
</domain-config>
</network-security-config><application
android:networkSecurityConfig="@xml/network_security_config">
</application>If your app already has a network security configuration, add the 127.0.0.1 domain to it instead of replacing the file. The adapter does not change your app’s network security configuration itself.
Compatibility
| Adapter version | Network SDK | Minimum CloudX SDK |
|---|---|---|
6.0.1.0 | BIGO Ads SDK 6.0.1 | 4.7.0 |
The adapter is discovered automatically when your server-provisioned CloudX configuration includes BIGO Ads demand. No manual adapter registration is required.