Not targeting the latest versions of Android
It says this because of targetSdkVersion=”16″. API 16 is Jellybean 4.1 and 4.1.1, while Jellybean 4.2 is API 17. Try using: <uses-sdk android:minSdkVersion=”8″ android:targetSdkVersion=”17″ /> Also, keep in mind that this is a Lint warning. These warning exist to help you better your code and make it easy to maintain, while being compatible with the …