Jump with 0 gravity?

I think you’ll need to place a static block at the bottom of the screen.

Have you tried something like this?

[lua]
local bottom = display.newRect( 0, 0, display.contentWidth, 100 )

bottom.x = 0

bottom.y = display.contentHeight + ( bottom.height * .5 )

physics.addBody( bottom, “static” )
[/lua]