4

Using smart mobile studio to develop a mobile application, I figured out I also need phone gap for further deployment of the application to my mobile device.
If I only want to distribute my mobile app on my phone is there any more simple way to create a mobile app? Can I do the same with Lazarus? Is it easier to bring the executable to an Android phone?

kobik
  • 21,001
  • 4
  • 61
  • 121
user1769184
  • 1,571
  • 1
  • 19
  • 44

2 Answers2

2

There is initial android target support in the development version FPC. There is afaik no lazarus support.

Two ways even, one by generating JVM code, one the native route. (native libraries used by a Java skeleton).

The latter one (native) seems to be the most used one.

Marco van de Voort
  • 25,628
  • 5
  • 56
  • 89
1

You can configure Lazarus to compile for ARM processors which are in some mobile devices.

Read about it here

Donovan Boddy
  • 489
  • 1
  • 6
  • 14
  • 2
    This question asks about Android. It does not ask about *some mobile devices*. – David Heffernan Feb 24 '13 at 19:26
  • 3
    The question doesn't ask about targeting a specific processor; it asks about targeting a specific *operating system* (Android), which runs on several different processors. This is not an answer to the question asked. – Ken White Feb 24 '13 at 21:51
  • well thanks for that, how about rather than tearing my answer apart you provide one of your own? – Donovan Boddy Feb 25 '13 at 06:30