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')