summaryrefslogtreecommitdiffstats
path: root/core/java/android/os
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2014-10-17 17:15:02 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-10-17 17:15:02 +0000
commit53cf2d4b9f18e221f0a2b66082644fca1a7650f0 (patch)
treec0f857436af45d21f6e8624b9471e16003dd222b /core/java/android/os
parent1cdd6c2075bc5d4ba37573badfafc677050659ad (diff)
parent52476989b8afc0e96c2218625031ed550b12c79b (diff)
downloadframeworks_base-53cf2d4b9f18e221f0a2b66082644fca1a7650f0.zip
frameworks_base-53cf2d4b9f18e221f0a2b66082644fca1a7650f0.tar.gz
frameworks_base-53cf2d4b9f18e221f0a2b66082644fca1a7650f0.tar.bz2
am 52476989: Merge "SDK only: hide the old L API version constant." into lmp-dev
* commit '52476989b8afc0e96c2218625031ed550b12c79b': SDK only: hide the old L API version constant.
Diffstat (limited to 'core/java/android/os')
-rw-r--r--core/java/android/os/Build.java19
1 files changed, 19 insertions, 0 deletions
diff --git a/core/java/android/os/Build.java b/core/java/android/os/Build.java
index ff194c5..d1ad313 100644
--- a/core/java/android/os/Build.java
+++ b/core/java/android/os/Build.java
@@ -555,6 +555,7 @@ public class Build {
/**
* Temporary until we completely switch to {@link #LOLLIPOP}.
+ * @hide
*/
public static final int L = 21;
@@ -567,6 +568,24 @@ public class Build {
* <li> {@link android.content.Context#bindService Context.bindService} now
* requires an explicit Intent, and will throw an exception if given an implicit
* Intent.</li>
+ * <li> {@link android.app.Notification.Builder Notification.Builder} will
+ * not have the colors of their various notification elements adjusted to better
+ * match the new material design look.</li>
+ * <li> {@link android.os.Message} will validate that a message is not currently
+ * in use when it is recycled.</li>
+ * <li> Hardware accelerated drawing in windows will be enabled automatically
+ * in most places.</li>
+ * <li> {@link android.widget.Spinner} throws an exception if attaching an
+ * adapter with more than one item type.</li>
+ * <li> If the app is a launcher, the launcher will be available to the user
+ * even when they are using corporate profiles (which requires that the app
+ * use {@link android.content.pm.LauncherApps} to correctly populate its
+ * apps UI).</li>
+ * <li> Calling {@link android.app.Service#stopForeground Service.stopForeground}
+ * with removeNotification false will modify the still posted notification so that
+ * it is no longer forced to be ongoing.</li>
+ * <li> A {@link android.service.dreams.DreamService} must require the
+ * {@link android.Manifest.permission#BIND_DREAM_SERVICE} permission to be usable.</li>
* </ul>
*/
public static final int LOLLIPOP = 21;