Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to block some url on android browser?

How to block some url (site) on android default browser???

I want to restrict user to access some url which are black listed.

eg. If i want to block facebook then phone inbuilt app browser will not access this facebook site.

Thanks in advance!

like image 489
PrvN Avatar asked Jul 01 '13 06:07

PrvN


People also ask

Can you block a website on Android?

One of the easiest solutions to block a website on Android is to use an app firewall. Configuring a firewall app, such as NoRoot Firewall, could help you to block certain websites on your device. This works by blocking your device from loading those pages.

Can I block certain websites on my phone?

Mobile Security: Tap Parental Controls, enter your password, and turn on Website Filter. Tap Blocked List > Add and enter the URL. BlockSite: Tap plus (+), enter the website URL. Tap alarm clock to schedule a blocked time.


1 Answers

Do you want to block some websites on a user's device by letting them install an app?

If that is the case, it will only work if they are rooted. If they are, then you could add an entry of the url to the hosts file and redirect it to another ip address (eg 127.0.0.1). But since they need to be rooted, they will probably get a popup asking for permission to access root. This could raise some suspicion with the user.

On a device that's not rooted, preventing the standard browser from accessing a certain website is not possible by installing an app.

like image 63
Siebe Avatar answered Sep 21 '22 23:09

Siebe