Banner Ad Handler
Parameters
activity
Android required Activity
// Instantiate
val ad = BannerAdHandler(activity)
// Load the Ad
ad.load(
adUnitId = "AD_UNIT_ID_GOES_HERE", // Banner Ad Unit ID from AdMob
adSize = AdSize.FULL_BANNER // Banner AdSize goes here
onFailure = {}, // Callback when ad fails to display
onDismissed = {}, // Callback when ad is dismissed
onShown = {}, // Callback after ad is shown
onImpression = {}, // Callback after the ad makes an impression
onClick = {} // Callback on ad click
)
// Show the ad in your Composable
BannerAd(ad)Content copied to clipboard