Skip to content

Instantly share code, notes, and snippets.

@LethalMaus
Created December 6, 2023 20:25
Show Gist options
  • Select an option

  • Save LethalMaus/4f86506cd8eb94bece4ba5bddc4b1ce1 to your computer and use it in GitHub Desktop.

Select an option

Save LethalMaus/4f86506cd8eb94bece4ba5bddc4b1ce1 to your computer and use it in GitHub Desktop.
admob.kt
@Composable
fun AdmobBanner(modifier: Modifier = Modifier) {
AndroidView(
modifier = modifier,
factory = { context ->
AdView(context).apply {
setAdSize(AdSize.BANNER)
adUnitId = BuildConfig.BANNER_AD
loadAd(AdRequest.Builder().build())
}
}
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment