Reputation: 594
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
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