I'd like to flush DNS in my Android app due to some external event. I've noticed that Android system code uses something like this:
final Intent intent = new Intent(Intent.ACTION_CLEAR_DNS_CACHE);
to clear DNS cache but it doesn't appear to be available in the user code. Are there any alternatives? Thanks.