**Affected Files:** * [NativeScreen.kt](https://github.com/googleads/googleads-mobile-android-examples/blob/main/kotlin/advanced/JetpackComposeDemo/app/src/main/java/com/google/android/gms/example/jetpackcomposedemo/formats/NativeScreen.kt#L133) * [NativeAdView.kt](https://github.com/googleads/googleads-mobile-android-examples/blob/3a4320486c72c535f7581a5e81f8e295fa1b0dd2/kotlin/advanced/JetpackComposeDemo/compose-util/src/main/java/com/google/android/gms/compose_util/NativeAdView.kt) --- ### Description I noticed that `setNativeAd()` is not being called in the affected files, and I'm concerned this might violate AdMob policies. As someone new to Compose but experienced with Android Views, I understand that we typically need to: 1. Call `setNativeAd()` on the `NativeAdView` 2. Populate each child view within the `NativeAdView` However, I don't see this implementation in the current code. **Questions:** - Is this a bug that needs to be addressed? - Or can you confirm that this implementation is compliant with AdMob policies? I want to ensure the code follows best practices and doesn't risk policy violations. ### Expected Behavior The native ad implementation should properly call `setNativeAd()` and register child views as per AdMob guidelines. ### Current Behavior The `setNativeAd()` method call appears to be missing from the implementation.