Skip to content Skip to sidebar Skip to footer

Delphi Xe5 Androidmanifest. Can Not Set Minsdkversion=14 Or Bigger

//Deilhi-XE5 Android Development I have a strange problem when I tried to set minSdkVersion in AndroidManifest.template.xml to 14 or latest version. When it is equal '9' or '10' my

Solution 1:

Known problem. See this QC report.

No workarounds thus far, other than not setting targetSdkVersion.

Solution 2:

You must change

android:configChanges="orientation|keyboardHidden">

to:

android:configChanges="orientation|keyboardHidden|screenSize">

Then, you can set min, max, target as you want.

Post a Comment for "Delphi Xe5 Androidmanifest. Can Not Set Minsdkversion=14 Or Bigger"