From d16047434bca24b2811de7ea9d22de6ee0f87f79 Mon Sep 17 00:00:00 2001 From: Xavier Ducrohet Date: Wed, 26 Sep 2012 10:11:54 -0700 Subject: [PATCH] Fix writing text version of styleable IDs. Change-Id: I3f2614689a597de3fd46628c020cf649a808c82f --- tools/aapt/Resource.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/aapt/Resource.cpp b/tools/aapt/Resource.cpp index 50334185fdf57..a52a9de8046f9 100644 --- a/tools/aapt/Resource.cpp +++ b/tools/aapt/Resource.cpp @@ -1946,7 +1946,7 @@ static status_t writeTextLayoutClasses( const bool pub = (typeSpecFlags&ResTable_typeSpec::SPEC_PUBLIC) != 0; fprintf(fp, - "int styleable.%s_%s %d\n", + "int styleable %s_%s %d\n", nclassName.string(), String8(name).string(), (int)pos); }