How do I set wifi ip address, dns address, gateway from android java i.e programmatically, I didn\'t find any method which has the capability to store the values.
the follow code can also do that:
WifiManager mWifiManager = (WifiManager)mContext.getSystemService(Context.WIFI_SERVICE); DhcpInfo dhcpInfo = mWifiManager.getDhcpInfo(); int dns1 = dhcpInfo.dns1; int dns2 = dhcpInfo.dns2;