cmsdk: Name api level 2 as boysenberry.

Change-Id: I4a70218b3c8f43771bfc7050d805244ef96785e6
This commit is contained in:
Adnan Begovic 2015-07-13 16:41:54 -07:00
parent 63524972a3
commit a7fb315791
1 changed files with 6 additions and 0 deletions

View File

@ -31,6 +31,7 @@ public class Build {
{
sdkMap = new SparseArray<String>();
sdkMap.put(CM_VERSION_CODES.APRICOT, "Apricot");
sdkMap.put(CM_VERSION_CODES.BOYSENBERRY, "Boysenberry");
}
/** Various version strings. */
@ -53,6 +54,11 @@ public class Build {
* June 2015: The first version of the platform sdk for CyanogenMod
*/
public static final int APRICOT = 1;
/**
* July 2015 - ?: The second version of the platform sdk for CyanogenMod
*/
public static final int BOYSENBERRY = 2;
}
/**