Enable Test Banners
You can enable test banners during development, to ensure you always see banner ads and avoid generating ad impressions during development.
This will activate “test mode” in Google Ad Manager (see further details here).
Test mode is automatically enabled in the Android Emulator and iOS Simulator.
Android:
if (BuildConfig.DEBUG) {
FuseSDK.enableTestMode(this@MyActivity, true)
}
iOS:
#if DEBUG
FuseSDK.shared.enableTestMode(true)
#endif