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

前端 未结 13 1663
名媛妹妹
名媛妹妹 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:28

    To request for internet permission in your code you must add these to your AndroidManifest.xml file

    
    

    For more detail explanation goto https://developer.android.com/training/basics/network-ops/connecting

提交回复
热议问题