diff options
author | Adam Lesinski <adamlesinski@google.com> | 2017-12-20 15:03:36 -0800 |
---|---|---|
committer | Adam Lesinski <adamlesinski@google.com> | 2017-12-28 08:17:51 -0800 |
commit | fca5e427e21f69e42a732600474bb97bf1f0eb7d (patch) | |
tree | 51f368a6938bce83e1e68c860457ec9505c40c00 /tools/aapt2/integration-tests | |
parent | e6aa6d14212eee2261bec5b226bf673fd8985845 (diff) |
AAPT2: <uses-library /> and <library /> don't need to be Java packages
- Also fixes issue where a failure checking the Java package of an attribute
would yield no error message.
Bug: 70722199
Test: make aapt2_tests
Change-Id: I417d5ffe18c8d4ba2f1638f9fb9ba29278ec8e94
Diffstat (limited to 'tools/aapt2/integration-tests')
-rw-r--r-- | tools/aapt2/integration-tests/AutoVersionTest/AndroidManifest.xml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/aapt2/integration-tests/AutoVersionTest/AndroidManifest.xml b/tools/aapt2/integration-tests/AutoVersionTest/AndroidManifest.xml index e66d709943a4..dd4523996bc3 100644 --- a/tools/aapt2/integration-tests/AutoVersionTest/AndroidManifest.xml +++ b/tools/aapt2/integration-tests/AutoVersionTest/AndroidManifest.xml @@ -18,4 +18,7 @@ package="com.android.aapt.autoversiontest"> <uses-sdk android:minSdkVersion="7" /> + <application> + <uses-library android:name="clockwork-system" /> + </application> </manifest> |