aboutsummaryrefslogtreecommitdiffstats
path: root/sdk/src/java/lineageos
diff options
context:
space:
mode:
authorJoey <joey@lineageos.org>2018-03-11 15:15:29 +0100
committerJoey <joey@lineageos.org>2018-03-12 14:04:47 +0100
commitfdd21f4a59f3aea306a628f8800b598fa19a2458 (patch)
tree8b2a03c83fa666b1231db598872575c938ae8e95 /sdk/src/java/lineageos
parent72bfc040c69175957c3627d6d97acd7c5ad7edb1 (diff)
downloadlineage-sdk-fdd21f4a59f3aea306a628f8800b598fa19a2458.tar.gz
lineage-sdk-fdd21f4a59f3aea306a628f8800b598fa19a2458.tar.bz2
lineage-sdk-fdd21f4a59f3aea306a628f8800b598fa19a2458.zip
sdk: ilama API (9)
Change-Id: I22ec35e3ab59fe64c223e8e3433e12c05870a1c0 Signed-off-by: Joey <joey@lineageos.org>
Diffstat (limited to 'sdk/src/java/lineageos')
-rw-r--r--sdk/src/java/lineageos/os/Build.java11
-rw-r--r--sdk/src/java/lineageos/os/Concierge.java2
2 files changed, 12 insertions, 1 deletions
diff --git a/sdk/src/java/lineageos/os/Build.java b/sdk/src/java/lineageos/os/Build.java
index 6ee6f7c5..83e041c5 100644
--- a/sdk/src/java/lineageos/os/Build.java
+++ b/sdk/src/java/lineageos/os/Build.java
@@ -45,6 +45,7 @@ public class Build {
sdkMap.put(LINEAGE_VERSION_CODES.FIG, "Fig");
sdkMap.put(LINEAGE_VERSION_CODES.GUAVA, "Guava");
sdkMap.put(LINEAGE_VERSION_CODES.HACKBERRY, "Hackberry");
+ sdkMap.put(LINEAGE_VERSION_CODES.ILAMA, "Ilama");
}
/** Various version strings. */
@@ -168,6 +169,16 @@ public class Build {
* <p>Unused APIs have been removed.</p>
*/
public static final int HACKBERRY = 8;
+
+ /**
+ * March 2018: The 1st iteration of the platform sdk for LineageOS
+ * <p>Applications targeting this or a later version will get access to these
+ * new features!</p>
+ * <ul>
+ * <li>Styles API to customize the system and get customized basing on the system style
+ * </ul>
+ */
+ public static final int ILAMA = 9;
}
/**
diff --git a/sdk/src/java/lineageos/os/Concierge.java b/sdk/src/java/lineageos/os/Concierge.java
index e1431275..d4f9b4e2 100644
--- a/sdk/src/java/lineageos/os/Concierge.java
+++ b/sdk/src/java/lineageos/os/Concierge.java
@@ -64,7 +64,7 @@ public final class Concierge {
* {@link LINEAGE_VERSION_CODES}
* @hide
*/
- public static final int PARCELABLE_VERSION = LINEAGE_VERSION_CODES.HACKBERRY;
+ public static final int PARCELABLE_VERSION = LINEAGE_VERSION_CODES.ILAMA;
/**
* Tell the concierge to receive our parcel, so we can get information from it.