Sometimes I case out code for certain versions of Android that may run my application. Eclipse with the latest Android tools still notices that my Manifest document allows lower versions of Android and therefore decides my code has errors in it.
A solution to this is to add a @Suppress
tag above the method so it doesn't report the error, or another suggestion is to add a @TargetApi
tag above the function
I dont understand the differences, or the consequences