From 83b4f7daba75e73ca9aad6033ed513902dc3b5bb Mon Sep 17 00:00:00 2001 From: Adam Lesinski Date: Fri, 20 Jan 2017 13:19:27 -0800 Subject: AAPT: Add support for 'font' resource type Change-Id: I5bc459e34715779ab3b1c415f40f592a4ccbb96e Test: manual --- tools/aapt/Resource.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/aapt/Resource.cpp') diff --git a/tools/aapt/Resource.cpp b/tools/aapt/Resource.cpp index 75a316092a02..045d68c3bbae 100644 --- a/tools/aapt/Resource.cpp +++ b/tools/aapt/Resource.cpp @@ -211,7 +211,7 @@ private: bool isValidResourceType(const String8& type) { return type == "anim" || type == "animator" || type == "interpolator" - || type == "transition" + || type == "transition" || type == "font" || type == "drawable" || type == "layout" || type == "values" || type == "xml" || type == "raw" || type == "color" || type == "menu" || type == "mipmap"; -- cgit v1.2.3-59-g8ed1b