I am currently working on android, I am using the eclipse tool. Since I wanted to get a list of all versions of android version_Codes available for the project. but currently my / eclipse tool only shows code_ versions before Froyo. I added the minimum sdk for android for 8 and the target sdk is 17. Below is my Androidmanifest.xml and project code. I am trying to implement code.
Java file
int FROYO = android.os.Build.VERSION_CODES.FROYO;
int JELLYBEAN = android.os.Build.VERSION_CODES.JELLY_BEAN;
Part of Androidmanifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.Android.Afaria" android:versionCode="50" android:sharedUserId="com.afaria.client"
xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="6.60.6172">
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="17" />
Here in the java file eclipse autosuggest does not offer version code above FROYO. 
source
share