I am trying to connect to the Internet to access my server from my Android application, but it does not seem to work. I looked online and found that I need to add
<uses-permission android:name="android.permission.INTERNET" />
before </manifest>. But when I do this, the compiler shows a warning:
<uses-permission> tag appears after <application> tag AndroidManifest.xml
Not sure if this warning leads to my code not working. I tried posting <user-permission>before <application>, but it still showed the same warning. What does this mean?
noMAD source
share