I get the following Exception running my app:
java.net.SocketException: Permission denied (maybe missing INTERNET permission)
How do I solve the missing permission problem?
I get the following Exception running my app:
java.net.SocketException: Permission denied (maybe missing INTERNET permission)
How do I solve the missing permission problem?
If you want using Internet in your app as well as check the network state i.e. Is app is connected to the internet then you have to use below code outside of the
application
tag.For Internet Permission:
For Access network state:
Complete Code:
Use these:
In the latest release of Google Play, Google removed the need to ask permission for internet as "most apps need it anyways nowadays". However, for users who have older versions, it is still recommended to leave the code below in your manifest
if just using internet then use-
if you are getting the state of internet then use also -
just above the application tag.
just put above line like below