Reputation: 1621
I run some trial runs using delphi XE5 with mobile support for android OS. My mobile device is android version 2.3.6. I know that the usb debugger support is only available with version 4.x of android. Anyhow, can I install my compiler app with Delphi XE 5 on Android my manual copying of files to my mobile phone?
Which file do I have to take from my computer and install somewhere on the mobile phone ?
Upvotes: 1
Views: 9504
Reputation: 76724
According to David InterSimone the following versions of Android are supported:
there must be a GPU
the CPU must be ARMv7 with NEON instruction support
the OS on the target device must be one of:
GingerBread: Android 2.3.3+ (MR1 or later), which is API level 10
Ice Cream Sandwich: Android 4.0.3+ (MR1 or later), which is API level 15
Jelly Bean: Android 4.1+ (release, MR1, MR2 or later),
which are API levels 16, 17 and 18
So your version is not the issue.
And your CPU is also OK.
You still need to check that the phone has a GPU.
As per Ken's comment, here how to find and deploy the apk file:
http://docwiki.embarcadero.com/RADStudio/XE5/en/Deploying_Your_Unsigned_Android_Application
Upvotes: 2