I just started learning about Jetpack Compose, and it's really nice the UI is so simplified. I am learning how implement all the XML views using Jetpack compose like RecyclerView (Lazycolumn) and so on.
I wonder how can I show an AdMob banner ad in Jetpack Compose. I know that we can use classic XML views using Interoperability APIs.
AndroidView(...) {
...
}
Is there a Compose way to implement Admob? or I can only use AndroidView to create a banner ad view programmatically.