Will Delphi XE 6 Android application in older versions of Android OS.?

I'm using Delphi XE 6 version and I have created Android Application and when i'm trying to run that application in Emulator, the application is running in Android 4.3 and that application is not running in the lower versions of the Emulator. Is it possible to make the android application run in lower version of Android OS by changing any of the setting. And I didn't test by running the application in mobile phones. Currently I'm i have tested the application in Emulators(Default emulator, BlueStacks and Greymotion). Please suggest me the good solution.

Upvotes: 0

Views: 777

Answers (2)

Deltics
Deltics

Reputation: 23036

Check the minSdkVersion and targetSdkVersion settings of the uses-sdk tag in the AndroidManifest.xml file of your project. If your minSdkVersion number is higher than the API level of your emulated device then your app will not run.

Note that these settings use API Level Numbers, rather than Android version numbers.

Upvotes: 1

gabr
gabr

Reputation: 26830

Delphi XE6 supports Android 2.3.3-2.3.7, 4.0.3, 4.0.3, 4.1.x-4.4.x. Feature matrix

ARMv7 + NEON FPU support is required. Frequently asked questions

Upvotes: 1

Related Questions