I get this error in Eclipse: Call requires API level 14 (current min is 8): android.app.ActionBar#setHomeButtonEnabled
This is code:
if(android.os.Build.VERSION.SDK_INT>=14) {
getActionBar().setHomeButtonEnabled(false);
}
In Manifest:
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="14" />
How to remove this error?
Add the line
@TargetApi(Build.VERSION_CODES.ICE_CREAM_SANDWICH)above the method signature, whereBuild.VERSION_CODES.ICE_CREAM_SANDWICHevaluates to 14, the API version code for Ice Cream Sandwich.Like so: