Android Mobile Phone Application with Delphi or Lazarus

Using an intelligent mobile studio to develop a mobile application, I realized that I also needed a phone gap to further deploy the application to my mobile device.
If I just want to distribute my mobile application on my phone, is there an even easier way to create a mobile application? Can I do the same with Lazarus? Is it easier to bring the executable to an Android phone?

+4
source share
2 answers

The FPC development version has initial support for the target Android. There is support for afaik no lazarus.

Two ways: one, creating JVM code, one - your own route. (native libraries used by the Java skeleton).

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

+2
source

You can configure Lazarus to compile for ARM processors that are found on some mobile devices.

Read about it here.

+1
source

All Articles