When trying to render AdMob native ad we see log:
```
1
2020-11-26 13:32:08.533 15110-15110/com.google.android.gms.example.nativeadvancedexample I/Ads: Received log message: <Google:HTML> Not all asset views lie inside the native ad view. This indicates an integration problem. Such implementations will not be supported in the future. Please make sure that all native ad assets are rendered inside the native ad view.
```
It happens on Samsung devices (Samsung Galaxy S8, S9, S20) when in the device display settings screen zoom, screen resolution are changed.
In particular, if we set in the device display settings:

We see the problem log in the AdMob sample (when using our template):
AdMob: 19.5.0
The template for native ad we’re using:
```
<com.google.android.gms.ads.formats.UnifiedNativeAdView xmlns:android="
http://schemas.android.com/apk/res/android"
xmlns:app="
http://schemas.android.com/apk/res-auto"
xmlns:tools="
http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.constraintlayout.widget.ConstraintLayout
style="?attr/easyNativeRootStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.constraintlayout.widget.Guideline
android:id="@+id/guidelineStart"
android:layout_width="0dp"
android:layout_height="0dp"
android:orientation="vertical"
app:layout_constraintGuide_begin="16dp" />
<androidx.constraintlayout.widget.Guideline
android:id="@+id/guidelineEnd"
android:layout_width="0dp"
android:layout_height="0dp"
android:orientation="vertical"
app:layout_constraintGuide_end="16dp" />
<androidx.constraintlayout.widget.Guideline
android:id="@+id/guidelineTop"
android:layout_width="0dp"
android:layout_height="0dp"
android:orientation="horizontal"
app:layout_constraintGuide_begin="16dp" />
<androidx.constraintlayout.widget.Guideline
android:id="@+id/guidelineBottom"
android:layout_width="0dp"
android:layout_height="0dp"
android:orientation="horizontal"
app:layout_constraintGuide_end="16dp" />
<FrameLayout
android:id="@+id/easyNativeIconPlaceholder"
android:layout_width="50dp"
android:layout_height="50dp"
app:layout_constraintStart_toStartOf="@+id/guidelineStart"
app:layout_constraintTop_toTopOf="@+id/guidelineTop">
<ImageView
android:id="@+id/easyNativeIcon"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</FrameLayout>
<TextView
android:id="@+id/easyNativeTitle"
style="?attr/easyNativeTitleStyle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:layout_marginBottom="4dp"
app:layout_constraintBottom_toTopOf="@+id/easyNativeAdText"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/easyNativeIconPlaceholder"
app:layout_constraintTop_toTopOf="@+id/easyNativeIconPlaceholder"
app:layout_constraintVertical_chainStyle="packed"
tools:text="Title" />
<TextView
android:id="@+id/easyNativeAdText"
style="?attr/easyNativeAdTextStyle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:text="@string/easy_native_ad"
app:layout_constraintBottom_toBottomOf="@+id/easyNativeIconPlaceholder"
app:layout_constraintEnd_toEndOf="@+id/guidelineEnd"
app:layout_constraintStart_toEndOf="@+id/easyNativeIconPlaceholder"
app:layout_constraintTop_toBottomOf="@+id/easyNativeTitle" />
<TextView
android:id="@+id/easyNativeText"
style="?attr/easyNativeTextStyle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
app:layout_constraintEnd_toEndOf="@+id/guidelineEnd"
app:layout_constraintStart_toStartOf="@+id/guidelineStart"
app:layout_constraintTop_toBottomOf="@+id/easyNativeIconPlaceholder"
tools:text="Text" />
<FrameLayout
android:id="@+id/easyNativeMainPlaceholder"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginTop="10dp"
app:layout_constraintBottom_toTopOf="@+id/easyNativeCta"
app:layout_constraintDimensionRatio="16:9"
app:layout_constraintEnd_toEndOf="@+id/guidelineEnd"
app:layout_constraintStart_toStartOf="@+id/guidelineStart"
app:layout_constraintTop_toBottomOf="@+id/easyNativeText">
<com.google.android.gms.ads.formats.MediaView
android:id="@+id/easyNativeMain"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</FrameLayout>
<Button
android:id="@+id/easyNativeCta"
style="?attr/easyNativeCtaStyle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
app:layout_constraintBottom_toBottomOf="@+id/guidelineBottom"
app:layout_constraintEnd_toEndOf="@+id/guidelineEnd"
app:layout_constraintStart_toStartOf="@+id/guidelineStart"
app:layout_constraintTop_toBottomOf="@+id/easyNativeMainPlaceholder"
tools:text="Install" />
</androidx.constraintlayout.widget.ConstraintLayout>
</com.google.android.gms.ads.formats.UnifiedNativeAdView>
```
Logs are in the attachment.
At the same time we see that native ad is displayed correctly and all views are laid inside UnifiedNativeAdView:
Is that an issue with our template (and if so, how we should fix it).
Or it is an issue on the AdMob SDK side (false-positive detection)?
Thanks!