mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-19 18:58:19 +00:00
Support LauncherGoGoogle builds in Android.bp
LauncherGoGoogle has dependencies in Launcher3. In order to build it with Android.bp files, these must be exported as filegroups/libraries. Bug: 184175022 Test: Manual (built/installed on local device) Test: m -j RunLauncherGoGoogleRoboTests Change-Id: I1748ab9ccda06dadbd05c2ffcc77b59478ce37c7
This commit is contained in:
committed by
Rajeev Kumar
parent
781b84146f
commit
a65d68b6bf
27
Android.bp
27
Android.bp
@@ -211,3 +211,30 @@ filegroup {
|
||||
name: "launcher-proguard-rules",
|
||||
srcs: ["proguard.flags"],
|
||||
}
|
||||
|
||||
|
||||
// Library with all the dependencies for building Launcher Go
|
||||
android_library {
|
||||
name: "LauncherGoResLib",
|
||||
srcs: [
|
||||
"src/**/*.java",
|
||||
"quickstep/src/**/*.java",
|
||||
"go/src/**/*.java",
|
||||
"go/quickstep/src/**/*.java",
|
||||
],
|
||||
resource_dirs: [
|
||||
"go/res",
|
||||
"go/quickstep/res",
|
||||
],
|
||||
static_libs: [
|
||||
"Launcher3CommonDepsLib",
|
||||
"QuickstepResLib",
|
||||
],
|
||||
manifest: "quickstep/AndroidManifest-launcher.xml",
|
||||
additional_manifests: [
|
||||
"go/AndroidManifest.xml",
|
||||
"AndroidManifest-common.xml",
|
||||
],
|
||||
min_sdk_version: "29",
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user