Question
How to enable socket connection?
I have allowed INTERNET permission, but my socket still blocked.
<uses-permission android:name="android.permission.INTERNET" />
If I compile apk with -debug tag, then socket connection works, but my application runs very slow.
And I dont want to publish a release version with all my debug messages.
What is the standard way to open socket connection?
Thanks