1

I want to create a communication between two Android devices.

One is a server and another is a client.

Is it possible to open a server network socket from an android app without the root permission?

user801661
  • 137
  • 7
  • 15

1 Answers1

4

YES

You have to add <uses-permission android:name="android.permission.INTERNET"/> permission in your Application's Manifest file

Don Chakkappan
  • 7,157
  • 5
  • 43
  • 57