senps
senps

Reputation: 594

Block websites in an Android phone using JAVA

I want to block given URLs of an Android device using JAVA code. When user try to connect that URLs, it should be restrict. Is this possible to do?

Upvotes: 0

Views: 1317

Answers (1)

CommonsWare
CommonsWare

Reputation: 1006634

Not really. You could write a proxy server, ask people to use the proxy server, and do your blocking in there. But the user would have to opt into this, and removing your block would be a simple matter of removing the proxy server.

Upvotes: 2

Related Questions