Blender Game to Android

Is it possible yet to get a BGE game onto Android(APK) yet.

I have seen a thing called GameKit, but to me it looks like a emulator, and I have not seen any info for exporting APK’s from it yet.

I have also seen Eclipse come up. Is it possible to import a Blender game project into Eclipse, and then export to APK that way.

Any positive info is much appreciated.

There is no current project working on an Android capable BGE.
You can have a look at blend4web, as that creates html5 which can be run on most cellphone browsers.

GameKit is not an emulator. It has native support for .blend file games and uses Bullet Physics (same physics system in Blender). Graphics are rendered with Ogre.

The major difference between BGE and GameKit is that GameKit uses Lua instead of Python, so any Python scripts your game uses will need to be ported to Lua. The GameKit API is not very well documented (last I looked). You have to find it in the source code.

Also, not all logic bricks work in GameKit… again, documentation is sort of sketchy on this. Many bricks are supported, but not all.

If you know how to compile software from source code, it is not a difficult thing to make an APK of your game using GameKit. I was playing around with this back when my kids had an android tablet (which they have since broken), and it was really straightforward. Detailed instructions are here:
https://code.google.com/p/gamekit/wiki/Building

Latest source is here:

A blender game to gamekit exporter would be very appreciated by the community…

Logic brick not supported? throw error.

Python ->Lua conversion ? possible?