Avraam Mavridis
Avraam Mavridis

Reputation: 8920

Is there any way to run an application direct to the device on Corona SDK?

It is very time-consuming to build an application, copy the apk on the device, install it and run it, just because you want to change the value of a variable. Is there any way to run an application straight to the phone (like in Unity) ?

Does Gideros or any other similar SDK offer this capability? I read that ZeroBrane offers on device debugging but I didn't find any more tutorial/information how can you do it.

Upvotes: 0

Views: 408

Answers (3)

speeder
speeder

Reputation: 6296

Corona cannot do that without ZeroBrane LiveCoding.

Gideros do that by default.

Upvotes: 1

Artūrs Sosins
Artūrs Sosins

Reputation: 579

Gideros provides exactly such capability, you just install Gideros Player on your device, enter IP address on your computer, and instantly run your app on device, without any exporting or building, just click play.

Additionally with combination of ZeroBrane you can achieve live coding http://bowerhaus.eu/blog/files/live_coding.html

Upvotes: 2

RBerteig
RBerteig

Reputation: 43366

There are tutorials and documentation at the ZeroBrane site for doing remote device debugging (and even live coding for some frameworks).

Generally remote debug requires that the on-device code be able to load the modules mobdebug (provided with ZBS) and luasocket.

Upvotes: 0

Related Questions