Search code examples
javaandroideclipsesdk

not targeting the latest versions of android compatibility modes apply 4.4W


I change the theme in the manifest to BlackNotitleFullscreen and i cant run the app. I use 4.4W

    <uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="15" />

Solution

  • Use android 4.2 and API 19 to avoid these kind of errors and change:

    <uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="19" />