I get this error in Eclipse: calling requires API level 14 (current min - 8): android.app.ActionBar # setHomeButtonEnabled
This is the code:
if(android.os.Build.VERSION.SDK_INT>=14) { getActionBar().setHomeButtonEnabled(false); }
In the manifest:
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="14" />
How to remove this error?
android eclipse
BArtWell Sep 27 '12 at 23:07 2012-09-27 23:07
source share