Skip to content

Instantly share code, notes, and snippets.

@megaacheyounes
Created September 28, 2022 10:15
Show Gist options
  • Save megaacheyounes/78bd7a8f0e1591aabc8896831ea4d742 to your computer and use it in GitHub Desktop.
Save megaacheyounes/78bd7a8f0e1591aabc8896831ea4d742 to your computer and use it in GitHub Desktop.
Huawie banner ad using jetpack compose sample
@Composable
fun AdBannerCompose(
modifier: Modifier = Modifier,
adId: String = "testw6vs28auh3",
) {
AndroidView(
modifier = modifier.fillMaxWidth(),
factory = { context ->
BannerView(this).apply {
adId = adId
bannerAdSize = BannerAdSize.BANNER_SIZE_360_57
setBannerRefresh(60)
loadAd(AdParam.Builder().build())
}
},
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment