I want to add support for xlargeScreens to my project and thus I've added the line to my manifest file so that it looks like this:
However, compiling gives me the following error message:
Can someone give me a clue as to why? I thought my android.jar might not be the latest version so I downloaded and installed the newest SDK, but it made no difference.
B4X:
AddManifestText(
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="14"/>
<supports-screens android:largeScreens="true"
android:xlargeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
However, compiling gives me the following error message:
B4X:
AndroidManifest.xml:10: error: No resource identifier found for attribute 'xlargeScreens' in package 'android'
Can someone give me a clue as to why? I thought my android.jar might not be the latest version so I downloaded and installed the newest SDK, but it made no difference.