Android
android safe browsing
aucd29
2017. 10. 10. 17:25
android 에 safe browsing 항목이 추가되었으며 이를 활성화 시키려면 manifest 에 meta-data 만 추가해주면 된다.
https://safebrowsing.google.com/
https://safebrowsing.google.com/
<manifest>
<meta-data android:name="android.webkit.WebView.EnableSafeBrowsing" android:value="true" />
<application ...>
...
</application>
</manifest>