Black screen on device.

@delephant: This may help you in some way that I got black screen on both Android 3 and Android 4 tablets. [import]uid: 206803 topic_id: 35166 reply_id: 139949[/import]

Hmm, yeah old KF is running 2.3.3 so that seems to be working.

Looking into it…

Also, everything works fine in the emulator. [import]uid: 202223 topic_id: 35166 reply_id: 139950[/import]

Well I solved my black screen issue. I’m not sure if you have a similar situation, but in my case it was a physics.setGravity() issue.

Why this works on pre-Android 3 is a mystery. Anyway…

Will cause crash (BlackSOD) on Android 3-4, works fine in Android 2.3.3 and emulator:

[lua]local physics = require( “physics” )
physics.setGravity( 0, 11 )
physics.start()[/lua]

Will work on everything (it seems):
[lua]local physics = require( “physics” )
physics.start()
physics.setGravity( 0, 11 ) – start physics, then set gravity[/lua]

Hope that helps someone. [import]uid: 202223 topic_id: 35166 reply_id: 139957[/import]

So here is the adb dump, if anyone can see the issue:

Removed, see next post… [import]uid: 202223 topic_id: 35166 reply_id: 139951[/import]

@develephant
Good to know… [import]uid: 70847 topic_id: 35166 reply_id: 139959[/import]