Warning:
Not targeting the latest versions of Android; Compatibility modes apply.
Consider testing and updating this version. Consult the Android.os.Build.VERSION_CODES Javadoc for details.
The ANDROID SDK version is 19.
<?XML version= "1.0" encoding= "Utf-8"?><Manifestxmlns:android= "Http://schemas.android.com/apk/res/android" Package= "Com.example.themetest"Android:versioncode= "1"Android:versionname= "1.0" > <USES-SDKandroid:minsdkversion= "8" android:targetsdkversion= " />" problem is here: <ApplicationAndroid:allowbackup= "true"Android:icon= "@drawable/ic_launcher"Android:label= "@string/app_name"Android:theme= "@style/appbasetheme" > <ActivityAndroid:name= "Com.example.themetest.MainActivity"Android:label= "@string/app_name" > <Intent-filter> <ActionAndroid:name= "Android.intent.action.MAIN" /> <categoryAndroid:name= "Android.intent.category.LAUNCHER" /> </Intent-filter> </Activity> </Application></Manifest>
Workaround: The targetsdkversion version is not up-to-date, and it is good to change to the latest or update of the local SDK.
Local is 19
< USES-SDK android:minsdkversion = "4" android:targetsdkversion= "/> " or < USES-SDK android:minsdkversion= "4" android:targetsdkversion = "/> "
Reference: Http://stackoverflow.com/questions/13431722/not-targeting-the-latest-versions-of-android