When my splash screen starts i get tis error in logcat:
11-06 02:36:45.450: E/global(4184): Deprecated Thread methods are not supported. 11-06 02:36:45.450: E/gl
The answer is in the error message: Thread.stop() is deprecated, and Android does not support deprecated methods.
Perhaps you can try using Thread.sleep() in your onCreate to do the timeout instead.