From d2198f5f7fc3cdb1a62a1f12226aaefa1b0b1591 Mon Sep 17 00:00:00 2001 From: Pun Butrach Date: Thu, 20 Nov 2025 21:37:13 +0700 Subject: [PATCH] Revert "chore: Remove reference to searchuilib" This reverts commit 449441ec03eac2d0867262d57612998ddcf98b1e. --- CONTRIBUTING.md | 2 +- build.gradle | 1 + settings.gradle | 3 +++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 747e4bab6d..a4c7e9cea6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -44,7 +44,7 @@ For translations, please visit **[Lawnchair on Crowdin][crowdin]**. 2. Open the project in Android Studio. 3. Select the `lawnWithQuickstepGithubDebug` build variant. -If you encounter errors with modules that ends with `lib` suffix like `iconloaderlib` or `animationlib`, +If you encounter errors with modules that ends with `lib` suffix like `iconloaderlib` or `searchuilib`, run `git submodule update --init --recursive`. Here are some contribution tips to help you get started: diff --git a/build.gradle b/build.gradle index 3421704172..e539121509 100644 --- a/build.gradle +++ b/build.gradle @@ -378,6 +378,7 @@ addFrameworkJar('framework-16.jar') dependencies { implementation projects.iconloaderlib + implementation projects.searchuilib implementation projects.animationlib implementation projects.msdllib implementation projects.contextualeducationlib diff --git a/settings.gradle b/settings.gradle index 5c8d7f8333..fc745d5b38 100644 --- a/settings.gradle +++ b/settings.gradle @@ -51,6 +51,9 @@ enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS") include ':iconloaderlib' project(':iconloaderlib').projectDir = new File(rootDir, 'platform_frameworks_libs_systemui/iconloaderlib') +include ':searchuilib' +project(':searchuilib').projectDir = new File(rootDir, 'platform_frameworks_libs_systemui/searchuilib') + include ':animationlib' project(':animationlib').projectDir = new File(rootDir, 'platform_frameworks_libs_systemui/animationlib')