是否可以为基于 Intel Atom 的设备在 Delphi 中为 Android 创建代码?

Is possible to create code in Delphi for Android for devices based on Intel Atom?

是否可以在 Delphi 10 Seattle 为 Android 基于 Intel Atom 的设备创建代码?

来自docwiki.embarcadeo.com

ARM instruction CPUs are created by a wide variety of manufacturers according to different sets of specifications. ARM is the dominant technology in mobile hardware. The ARMv7 instruction set, or core, specifies the microarchitecture that the CPU uses. The family of CPUs that implement ARMv7 instructions are called the Cortex-A series. Most of these CPUs also include NEON technology. Some Android devices instead use the Intel ATOM architecture, which is incompatible with FireMonkey. The reason RAD Studio applications require this specific CPU architecture is that RAD Studio apps compile down to machine code for best performance. This is different than other Android apps that are developed with Java that compile down to Dalvik bytecode and then run on the Dalvik virtual machine. Most Android devices have a GPU, or Graphics Processing Unit. It is common for the GPU to be combined with the CPU in a System-on-a-Chip (or SoC) configuration. Any of these configurations should be supported.

我试过了,但实际上这段代码无法在 Android 具有 Intel Atom 处理器的 Android 设备上 运行