본문 바로가기

Android

android safe browsing

android 에 safe browsing 항목이 추가되었으며 이를 활성화 시키려면 manifest 에 meta-data 만 추가해주면 된다.
https://safebrowsing.google.com/


<manifest>

<meta-data android:name="android.webkit.WebView.EnableSafeBrowsing" android:value="true" />


<application ...>

...

</application>

</manifest>