2

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?

Ciro Santilli OurBigBook.com
  • 347,512
  • 102
  • 1,199
  • 985
user801661
  • 177
  • 8
  • 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,397
  • 5
  • 44
  • 59