diff options
author | Adam Lesinski <adamlesinski@google.com> | 2017-06-01 17:16:44 -0700 |
---|---|---|
committer | Adam Lesinski <adamlesinski@google.com> | 2017-06-01 17:16:44 -0700 |
commit | e597d68d33c76c2b830f5497ed4ba74c5193a056 (patch) | |
tree | 699e25d86f8ed610ef1b1b640efb5b86c89d4289 /tools/aapt2/integration-tests | |
parent | ceb24e88cbb56aa63c990693a2d6ea35dce029f5 (diff) |
AAPT2: Allow any value type for <item> without format attr
TO bring AAPT2 behavior in-line with AAPT, <item> has a default
format of "any", and only becomes restricted with an explicit format
attribute.
Bug: 62260121
Test: make aapt2_tests
Change-Id: Ife416f520e6c2710bb30e3ba3f2d4463794bfa06
Diffstat (limited to 'tools/aapt2/integration-tests')
-rw-r--r-- | tools/aapt2/integration-tests/AppOne/res/values/test.xml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/aapt2/integration-tests/AppOne/res/values/test.xml b/tools/aapt2/integration-tests/AppOne/res/values/test.xml index 91f8bfd0dd14..5104f8212d8b 100644 --- a/tools/aapt2/integration-tests/AppOne/res/values/test.xml +++ b/tools/aapt2/integration-tests/AppOne/res/values/test.xml @@ -30,6 +30,8 @@ <flag name="weak" value="4" /> </attr> + <item name="value_that_allows_any_format" type="integer">-100%p</item> + <!-- Override the Widget styleable declared in StaticLibOne. This should merge the two when built in overlay mode. --> <declare-styleable name="Widget"> |