summaryrefslogtreecommitdiff
path: root/tools/aapt/Resource.cpp
diff options
context:
space:
mode:
authorAdam Lesinski <adamlesinski@google.com>2017-01-20 13:19:27 -0800
committerAdam Lesinski <adamlesinski@google.com>2017-01-20 13:19:27 -0800
commit83b4f7daba75e73ca9aad6033ed513902dc3b5bb (patch)
tree4090a3c3fc497aeb26197cca1fbcc9807197e640 /tools/aapt/Resource.cpp
parent1f9f11007db09bbbc156965e77b10de82a32a544 (diff)
AAPT: Add support for 'font' resource type
Change-Id: I5bc459e34715779ab3b1c415f40f592a4ccbb96e Test: manual
Diffstat (limited to 'tools/aapt/Resource.cpp')
-rw-r--r--tools/aapt/Resource.cpp2
1 files changed, 1 insertions, 1 deletions
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";