From 63117dcfeaa4b506857bfa6387a92cbcce185f0b Mon Sep 17 00:00:00 2001 From: Scott Main Date: Thu, 4 Nov 2010 18:32:00 -0700 Subject: [PATCH 1/1] fix xlarge support in aapt for gingerbread Change-Id: I4d8872fb839a6eadc538055215d4455af328846c --- Command.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Command.cpp b/Command.cpp index ad0465d..661ecb1 100644 --- a/Command.cpp +++ b/Command.cpp @@ -1139,8 +1139,8 @@ int doDump(Bundle* bundle) largeScreen = targetSdk >= 4 ? -1 : 0; } if (xlargeScreen > 0) { - // Introduced in Honeycomb. - xlargeScreen = targetSdk >= 10 ? -1 : 0; + // Introduced in Gingerbread. + xlargeScreen = targetSdk >= 9 ? -1 : 0; } if (anyDensity > 0) { anyDensity = targetSdk >= 4 ? -1 : 0; -- 2.45.2