summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorztenghui <ztenghui@google.com>2017-10-13 15:56:08 -0700
committerandroid-build-team Robot <android-build-team-robot@google.com>2017-10-27 14:43:42 +0000
commit0a3a474e46e41803fb7dd18d5653ce052916e5ca (patch)
treef33577c0d1a4fa0d77c38f3173324ed8cf852265
parent93e7dcb9d5ca913855a76282180f3c324fcfeefe (diff)
downloadbase-0a3a474e46e41803fb7dd18d5653ce052916e5ca.tar.gz
AAPT leave <gradient> alone for VDC
bug: 62421666 Test: Tested with changes for Gradient of VDC. Change-Id: I07b39721aeaaafd888416a0f71f6cbd5fce97732 (cherry picked from commit ab2a38c03d54fad1ed0873ac091959ee38823cd6) (cherry picked from commit f49cce3aa6f625cfc7288886c044992e1580dbbc)
-rw-r--r--tools/aapt/ResourceTable.cpp4
-rw-r--r--tools/aapt2/cmd/Link.cpp2
2 files changed, 4 insertions, 2 deletions
diff --git a/tools/aapt/ResourceTable.cpp b/tools/aapt/ResourceTable.cpp
index 52b93a945433..669afe18af88 100644
--- a/tools/aapt/ResourceTable.cpp
+++ b/tools/aapt/ResourceTable.cpp
@@ -4847,6 +4847,7 @@ status_t ResourceTable::modifyForCompat(const Bundle* bundle,
const String16 animatedVector16("animated-vector");
const String16 pathInterpolator16("pathInterpolator");
const String16 objectAnimator16("objectAnimator");
+ const String16 gradient16("gradient");
const int minSdk = getMinSdkVersion(bundle);
if (minSdk >= SDK_LOLLIPOP_MR1) {
@@ -4874,7 +4875,8 @@ status_t ResourceTable::modifyForCompat(const Bundle* bundle,
if (bundle->getNoVersionVectors() && (node->getElementName() == vector16 ||
node->getElementName() == animatedVector16 ||
node->getElementName() == objectAnimator16 ||
- node->getElementName() == pathInterpolator16)) {
+ node->getElementName() == pathInterpolator16 ||
+ node->getElementName() == gradient16)) {
// We were told not to version vector tags, so skip the children here.
continue;
}
diff --git a/tools/aapt2/cmd/Link.cpp b/tools/aapt2/cmd/Link.cpp
index 7742f36f1610..fea11ed70bbe 100644
--- a/tools/aapt2/cmd/Link.cpp
+++ b/tools/aapt2/cmd/Link.cpp
@@ -442,7 +442,7 @@ static bool IsTransitionElement(const std::string& name) {
static bool IsVectorElement(const std::string& name) {
return name == "vector" || name == "animated-vector" || name == "pathInterpolator" ||
- name == "objectAnimator";
+ name == "objectAnimator" || name == "gradient";
}
template <typename T>