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?
Asked
Active
Viewed 1,880 times
4

kobik
- 21,001
- 4
- 61
- 121

user1769184
- 1,571
- 1
- 19
- 44
-
6Did you read the FreePascal and Lazarus documentation? Did you do a websearch? – David Heffernan Feb 24 '13 at 16:34
2 Answers
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
-
2This question asks about Android. It does not ask about *some mobile devices*. – David Heffernan Feb 24 '13 at 19:26
-
3The 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