Sorry. I thought it was about launching FMX applications on Intel devices. Since I already wrote the answer, I could just leave it.
/ Pontus
--- How to run Delphi FMX applications on Intel-based devices ---
This is actually very simple. Follow these steps and your Delphi FMX app will work perfectly on most Intel core Android devices. The trick is that almost all Intel-based devices have something called lib Houdini, which transcodes the ARM binary into the Intel binary. When you create an application in Delphi, you will get an APK that contains .so files. One for ARM, one for MIPS, and the last .so file for Intel. The only .so file that contains your code is the ARM.so file. The rest are precompiled .so files that will show end users that the device is incompatible. If you omit the Intel.so file from the APK, your application will use lib Houdini and will work fine. This is if the Intel device has Houdini lib installed. It is up to the manufacturer of the device to install, not for you.
Steps to omit the Intel.so file from the APK file:
- Go to this directory and rename the x86 folder to x86.old
C: \ Program (x86) \ Embarcadero \ Studio \ 17.0 \ lib \ android \ debug
- Do the same in this directory
C: \ Program (x86) \ Embarcadero \ Studio \ 17.0 \ lib \ android \ release
(change 17.0 to 16.0 for XE8 and to 15.0 for XE7, etc.)
The next time you create the APK, you will get a warning that the x86 folder does not exist, and this is just fine, because that is what we want. Now try installing the APK on your Intel device, and you'll notice that everything will be fine. If this is not the case, then lib Houdini is not installed on your device.
The only thing that will not work is debugging and that since Delphi is not aware of lib Houdini.
As a bonus, your APK will be a little smaller. If you like, you can do the same with MIPS folders. If lib Houdini is not available on your device, your application will crash.
Remember to clean and build your project before testing this.
There is another way; In Delphi, open the Project | Deployment and uncheck the box $ (BDS) \ lib \ android \ debug \ x86 \ or $ (BDS) \ lib \ android \ deploy \ x86 \ With this method you will need to make sure that you have it for all your projects. With the first method, you no longer have to worry.
While I am, I would really like to recommend this emulator; https://amiduos.com/ This is only 15. I use it with the Dell P2314T and work on multi-touch features. This is an Intel based emulator, fast, and it has lib Houdini installed.
Happy coding! / Pontus