I am getting this following error during run time.
ERROR: thread attach failed
My project contains two classes in src as fallowing:
- Activity class
- video_thread class
I've created an object for this video_thread class in Activity class, made it Daemon and started it like this:
video_thread v=new video_thread();
video_thraed.setDaemon(true);
video_thread.start();
During execution i am finding this error in the logcat.