From 5bcc416d5417ee846f26c67ee87acd5f39f0b812 Mon Sep 17 00:00:00 2001 From: Ying Wang Date: Thu, 19 Feb 2015 16:21:47 -0800 Subject: [PATCH] [DO NOT MERGE] Trim the AOSP PLATFORM_VERSION. With the long PLATFORM_VERSION, if you have also a long device/product name and/or a long username, ro.build.fingerprint can easily exceed the system property's length limit of 92 bytes. This mitigates the risk a little bit. Bug: 15593959 Change-Id: I9e316025227b30aa6887c9ce0065364fdbb9fc8f --- core/version_defaults.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/version_defaults.mk b/core/version_defaults.mk index d2bef1488..e4aa6b804 100644 --- a/core/version_defaults.mk +++ b/core/version_defaults.mk @@ -41,7 +41,7 @@ ifeq "" "$(PLATFORM_VERSION)" # which is the version that we reveal to the end user. # Update this value when the platform version changes (rather # than overriding it somewhere else). Can be an arbitrary string. - PLATFORM_VERSION := 5.0.50.50.50.50 + PLATFORM_VERSION := 5.0.555 endif ifeq "" "$(PLATFORM_SDK_VERSION)"