Add "nodpi" to DpiTest Android.mk

Part of the drawables for DpiTest is a nodpi directory, but the
LOCAL_AAPT_FLAGS didn't specify it.

Bug: 3165492
Change-Id: I989068d76f922db6048e6db7cc6822ab3234d36e
This commit is contained in:
Kenny Root
2010-11-04 11:29:48 -07:00
parent c68134b740
commit 867812df8f

View File

@@ -7,6 +7,6 @@ LOCAL_PACKAGE_NAME := DensityTest
LOCAL_MODULE_TAGS := tests
LOCAL_AAPT_FLAGS = -c 120dpi -c 240dpi -c 160dpi
LOCAL_AAPT_FLAGS = -c 120dpi,240dpi,160dpi,nodpi
include $(BUILD_PACKAGE)