2ndlife
2ndlife

Reputation: 1376

How does corona SDK build for Android

I recently read about Corona SDK and thought I willl give it a try, the concept is really cool since they use Lua as the scripting environment and it is good for cross platform development,

Lua script written can be directly run on the Corona Simulator since it is a Lua Interpreter

My question is How does it build for Android, does the Lua script get converted to Java code? Does this happen using the local android SDK or do I need to upload the code to Corona servers?

It will be really nice if someone who has used it give more details.

Thanks in advance.

Upvotes: 2

Views: 2392

Answers (1)

darune
darune

Reputation: 959

From my usage, this is how i understood it works :

  • You upload your lua files to their server
  • They package it with their interpreter for the given platform and the game engine
  • They send you back your binary package

So the lua doesn't get converted to java code, it is just packaged

Upvotes: 1

Related Questions