From 877a0234fac2f3d4e747c8ec04951e9f72943e30 Mon Sep 17 00:00:00 2001 From: Adnan Begovic Date: Fri, 1 Apr 2016 15:18:38 -0700 Subject: [PATCH] cmsdk: Add release notes for api level 5. Change-Id: I2ba738197286ce8f5128b08a6a800e06ec321822 --- sdk/src/java/cyanogenmod/os/Build.java | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/sdk/src/java/cyanogenmod/os/Build.java b/sdk/src/java/cyanogenmod/os/Build.java index ce7b8fb7..6d7c8c02 100644 --- a/sdk/src/java/cyanogenmod/os/Build.java +++ b/sdk/src/java/cyanogenmod/os/Build.java @@ -128,7 +128,24 @@ public class Build { public static final int DRAGON_FRUIT = 4; /** - * Future M Release - 2nd quarter 2016 + * April 2016: The 5th iteration of the platform sdk for CyanogenMod + * + *

Applications targeting this or a later version will get access to these + * new features!

+ *
  • Weather request api to fetch weather data from providers on the device + * {@link cyanogenmod.weather.CMWeatherManager}
  • + *
  • Weather provider api to provide weather data to any listener on the device + * {@link cyanogenmod.weatherservice.WeatherProviderService}
  • + *
  • Extended capabilities of the {@link cyanogenmod.externalviews.KeyguardExternalView} + * interfaces to provide immersive and interactive experiences on the lockscreen.
  • + *
  • Themes interfaces have found a new home in the cmsdk, thus we allow access + * to 3rd parties requesting theme changes on the platform via + * {@link cyanogenmod.themes.ThemeManager} and + * {@link cyanogenmod.themes.ThemeChangeRequest}
  • + *
  • Full access to the {@link cyanogenmod.providers.ThemesContract} and provider
  • + *
  • Parceling helper class {@link cyanogenmod.os.Concierge} to help with parcel + * headers and protocol revisions
  • + * */ public static final int ELDERBERRY = 5; }