Application Crashes While Starting The New Thread
I have a thread class when I start the thread and create the instance of thread class in the main class my app get crash. My main activity code for creating the thread is:
Solution 1:
The thread is not the issue, the real issue is the EACCES (Permission denied)
, add this permission to your manifest file
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
Post a Comment for "Application Crashes While Starting The New Thread"