I keep getting the error "No resource identifier found for attribute 'largeScreens' in package 'android'" I get this error for all of the difrent sizes of screen.
is it because my code block is set wrong?
<uses-permission
android:name="android.permission.INTERNET" />
<uses-sdk android:minSdkVersion="3" />
<supports-screens android:resizeable="true"
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true" />
<application android:icon="@drawable/icon" android:label="@string/app_name" android:debuggable="true">