Skip to content

Instantly share code, notes, and snippets.

@dwisiswant0
Created June 29, 2018 21:52
Show Gist options
  • Save dwisiswant0/5921db8b6077afe1c2a6d9ba796e9054 to your computer and use it in GitHub Desktop.
Save dwisiswant0/5921db8b6077afe1c2a6d9ba796e9054 to your computer and use it in GitHub Desktop.
Android Kill Ads WebView [Bash]

android_kill_ads_webview

  • Notes: Root required
#!/system/bin/sh
pkg=("ads" "android.gms.ads")
while [[ true ]]; do
	for i in "${pkg[@]}"; do
		svc="com.google.${i}"
		# echo "kill ${svc}"
		am force-stop ${svc}
	done
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment