Android Code Snippet Disable Admob Native Ad validator

In the last update of Admob, if you use the native ad, it shows a popup with tips about the ad.
1705946131561.png
1705946360555.png


If your implementation has no issues, you can disable the validator warning putting this line in the manifest:
B4X:
AddApplicationText(
<meta-data android:name="com.google.android.gms.ads.flag.NATIVE_AD_DEBUGGER_ENABLED" android:value="false" />
)
 
Last edited:
Top