Hey, i've just spent a few hours trying to get slick working on Android (I believe the SDK must have changed since you last looked at it). I am using an older version of the Slick.jar as the current version caused some compile issues (LWJGL cursor not found issue).
However what is really baffling me is the current error I am getting:
ERROR/AndroidRuntime(274): Uncaught handler: thread main exiting due to uncaught exception
ERROR/AndroidRuntime(274): java.lang.ExceptionInInitializerError
ERROR/AndroidRuntime(274): at org.newdawn.slickdroid.GLView.<init>(SlickDroid.java:123)
ERROR/AndroidRuntime(274): Caused by: java.lang.VerifyError: org.newdawn.slick.opengl.renderer.ImmediateModeOGLRenderer
ERROR/AndroidRuntime(274): at org.newdawn.slick.opengl.renderer.Renderer.<clinit>(Renderer.java:23)
Do you have any idea why the "java.lang.VerifyError" is being thrown?
According to the docs:
This error is thrown when the VM notices that an attempt is made to load a class which does not pass the class verification phase.
But that means nothing to me!
I was just wondering if anyone (namely kev

) has come across this?