Created
December 6, 2023 20:25
-
-
Save LethalMaus/4f86506cd8eb94bece4ba5bddc4b1ce1 to your computer and use it in GitHub Desktop.
admob.kt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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