diff options
author | 2024-12-10 16:39:36 +0000 | |
---|---|---|
committer | 2024-12-10 16:40:19 +0000 | |
commit | 6593622db5343b752aa9f82d8447dbe27c4208d8 (patch) | |
tree | 178db17d2fe4b4c07b62c584853d873fb3765ae8 | |
parent | 989928304541ffbf7b978b90d592478259600c2e (diff) |
Disable "MissingClass" lint check in QuickstepResLib
QuickstepResLib just contains resources. The code implementation for custom views is in NexusLauncher, so the linter doesn't know about this and falsely thinks a custom view resource is added without a corresponding class.
Change-Id: Icfe57c82af679c22428319e20d4c0e29b5c374fe
Fix: 383318069
Bug: 376817827
Flag: EXEMPT trivial build config change
Test: Add a custom view resource to QuickstepResLib, add code for custom view to NexusLauncher, run presubmits, check lint warning isn't there
-rw-r--r-- | Android.bp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp index 73d0fce260..6bd8602a3b 100644 --- a/Android.bp +++ b/Android.bp @@ -475,6 +475,9 @@ android_library { ], manifest: "quickstep/AndroidManifest.xml", min_sdk_version: "current", + lint: { + disabled_checks: ["MissingClass"], + }, } // Library with all the source code and dependencies for building Launcher Go |