What permission do I need to access Internet from an Android application?

前端 未结 13 1691
名媛妹妹
名媛妹妹 2020-11-22 03:50

I get the following Exception running my app:

java.net.SocketException: Permission denied (maybe missing INTERNET permission)

How do I solv

13条回答
  •  悲哀的现实
    2020-11-22 04:30

    Add the INTERNET permission to your manifest file.

    You have to add this line:

     
    

    outside the application tag in your AndroidManifest.xml

提交回复
热议问题