I've been following the beginner PlayN tutorial at http://code.google.com/p/playn/wiki/BeginnerInstallationGuide
So basically I've downloaded PlayN sources, setup a new Maven project. Then, the Desktop Java version runs as described. With the Android version, I get this error: E/AndroidRuntime?(370): at android.opengl.GLSurfaceView$GLThread.run(GLSurfaceView.java:1180)
I left the generated sources as is, any clues?
Testing Android via Eclipse is not currently working. If you want to test a PlayN game in Eclipse, you need to do it via the command line, like so:
cd mygame
mvn clean package
cd android
mvn android:deploy
Also, I don't believe that you can currently test using the emulator due to lacking or limited support of OpenGL in the emulator. So you'll need to test on a real device.