From 3b452f5e90e8d8b7a674db7366caf0404255b95b Mon Sep 17 00:00:00 2001 From: Sunny Goyal Date: Fri, 12 Apr 2024 19:16:19 +0000 Subject: [PATCH] Fixing Launcher3QuickStepGo targets When res directory is not specified in the app target, it automatically uses the default res directory, which in this case overrides the quickstep resources. Explicitely specifying the res directory to prevent override Bug: 333207609 Test: Verified apk Flag: None Change-Id: I749ad895f42ac40a462993ed5290da52a838c1ec --- Android.bp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Android.bp b/Android.bp index c4ea48ad5a..eed67f53e8 100644 --- a/Android.bp +++ b/Android.bp @@ -339,6 +339,7 @@ android_app { name: "Launcher3Go", static_libs: ["Launcher3GoLib"], + resource_dirs: [], platform_apis: true, min_sdk_version: "current", @@ -374,6 +375,7 @@ android_app { name: "Launcher3QuickStepGo", static_libs: ["Launcher3GoLib"], + resource_dirs: [], platform_apis: true, min_sdk_version: "current",