How to disable Adsense on Webview?

Yeye1984

Regular Member
Joined
Jul 19, 2020
Messages
228
Reaction score
38
Hello, how can I disable Adsense on Webview to add Admob?.

Thank you in advance.
 
Maybe a little late answer, but I'd like to share some method you can use.

- Set a fixed user-agent in Android app, for example you can set user-agent in Android Java with the code below:
webView.getSettings().setUserAgentString("Enter here user-agent string")

- Check user-agent in backend of website (you can use $_SERVER['HTTP_USER_AGENT'] in PHP to get user agent), if the user-agent is equal to your fixed user agent, do not show ads.
 
You are just on time. Thank you
 
Back
Top