I know that it is deprecated to use Thread.stop() and I allready know the alternative ways to stop a thread. But what are the direct consequences of Thread.stop() and what makes Thread.stop() so "dangerous"?.
If I call Thread.stop() in the end of an activity (onDestroy) will it cause any problems ( I want to prevent the Thread from accessing objects in my activity immediately)?
thx & regards