In my application i am using:
android theme = @android:style/Theme.DeviceDefault.Light.NoActionBar.Fullscreen but eclipse shows error.
error is: required version (API 14) and current min is 7.
but in another application i am using same code it doesn't shows any error ....... why?
my manifest:
<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="17" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.DeviceDefault.Light.NoActionBar.Fullscreen" >