OnePlusPlusLauncher

LSPosed Module for OnePlus System Launcher

GitHub Release GitHub Actions Workflow Status GitHub License GitHub Downloads (all assets, all releases) GitHub Repo stars

OnePlusPlusLauncher is an Xposed/LSPosed module for the System Launcher on OxygenOS 15 that hooks into the application using the YukiHookAPI framework. It modifies app drawer search functions: automating keyboard display, enabling instant app launch from search, redirecting search actions to the app drawer, and providing optional fuzzy search.

Please star the repository, if you enjoy using the module! It goes a long way ⭐

đŸ“Ļ Installation

Before downloading, please check the release notes of the version you are downloading to see if it is compatible with your launcher version.

  1. Make sure your device is rooted and you have LSPosed installed.
  2. Download the latest release APK (or any other older release) from the releases page
  3. Install the APK on your device.
  4. Enable the module in the LSPosed manager and make sure System Launcher is enabled in the scope settings.
  5. Restart System Launcher.

(Restarting the launcher may be necessary for changes to take effect after toggling features.)

⚡ Features

  • âŒ¨ī¸ Automatic Keyboard / Searchbar Focus: Automatically displays the keyboard when the app drawer is opened and search is focused. Can be toggled separately for opening app drawer by swiping up or redirecting from the Global Search Button.
  • â†Šī¸ App Launch on Enter: Launches the first search result directly when the "Enter" key or search action button on the keyboard is pressed.
  • 🔎 Global Search Button Redirect: Intercepts the search button in the homescreen that would normally open the dedicated global search app, redirecting to the main app drawer instead.
  • 📱 Swipe Down Search Redirect: Intercepts swipe down search gestures and redirects them to the app drawer instead of the default search interface. Includes optional auto focus for seamless search experience.
  • 🍑 Fuzzy Search: Replaces the default search logic with a ranked fuzzy search algorithm for more flexible matching.
  • âš™ī¸ Configuration UI: Allows toggling features individually, including auto focus options for different interaction methods.

🔮 To-Do

  • Rewrite the module UI using Jetpack Compose instead of the current Android Views/XML implementation.
  • A decent app icon
  • And many other refactorings and improvements...

🔧 Troubleshooting / Known Issues

  • Compatibility / Launcher Updates: Launcher updates may break hooks. Class names, field names, or method signatures might change, requiring updates to the module.

Package

com.wizpizz.onepluspluslauncher

Authors

wiz

Releases

v1.2.1

Release type: Stable

8/11/2025, 1:41:22 PM

Synced from main repo release: v1.2.1

🚀 OnePlusPlusLauncher v1.2.1 Release

📝 Changelog

  • Misc:
    • [#4] Fuzzy search now uses the lightweight FuzzyWuzzy library that utilizes the Levenshtein Distance algorithm to find the closest match.
      It handles simple typos well without any noticeable performance degredation.
      The code has also been tweaked to sanitize spaces & quotation marks from the query, since users of non-English IMEs (e.g. Chinese Pinyin) often produce search queries with such characters.
      The calculation method has also been tweaked to prefer matches where the query is a prefix of the target or if the query chars subsequently appear in the target. (Thanks to @deltazefiro!)

Full Changelog: v1.2.0...v1.2.1

âŦ‡ī¸ Installation

  1. Make sure your device is rooted and you have LSPosed installed.
  2. Download the latest release APK from the assets section below or simply click here
  3. Install the APK on your device.
  4. Enable the module in the LSPosed manager and make sure System Launcher is enabled in the scope settings.
  5. Restart System Launcher.

(Restarting the launcher may be necessary for changes to take effect after toggling features.)

v1.2.0

Release type: Stable

8/4/2025, 8:43:46 PM

🚀 OnePlusPlusLauncher v1.2.0 Release

âš ī¸ Important

This version has only been tested on the latest launcher OxygenOS launcher version v15.8.17.

With all the backwards compatibility with older versions of the launcher, the code was becoming more and more unorganized. The next release will have a lot of refactoring and how older versions of the launcher are handled will be modularized. This was not included in this release due to time constraints, and wanting to get out this release with the fix for the latest version of the launcher.

If you are using an older version of the launcher, please use an older release.

📝 Changelog

  • ✨ New feature(s):

    • Intercept/redirect Google Discover to app drawer: When swiping left on the home screen, the app drawer will be opened and the search input will be focused (optional) instead of the Google Discover page.
  • 🔧 Fixes:

    • Fixed the Global Search Button Redirect feature for the latest version of the launcher.
  • Misc:

    • Several UI improvements.

Full Changelog

âŦ‡ī¸ Installation

  1. Make sure your device is rooted and you have LSPosed installed.
  2. Download the latest release APK from the assets section below or simply click here
  3. Install the APK on your device.
  4. Enable the module in the LSPosed manager and make sure System Launcher is enabled in the scope settings.
  5. Restart System Launcher.

(Restarting the launcher may be necessary for changes to take effect after toggling features.)

Release 2-1.1.0

Release type: Stable

6/16/2025, 11:08:45 PM

🚀 OnePlusPlusLauncher v1.1.0

✨ What's New

🔄 New Feature: Swipe Down Search Redirect

  • Redirects to app drawer when swipe down is detected, and auto focus search input (if enabled)
  • (for this, change swipe down gesture to "Global Search" in launcher settings)

đŸŽ›ī¸ Complete Feature Control

  • All features now toggleable - Every functionality can be enabled/disabled individually
  • Organized settings UI - Features grouped into logical categories with visual dividers:
    • 🔍 Search Enhancement (Fuzzy Search, Enter Key Launch)
    • đŸŽ¯ Auto Focus (Swipe Up Auto Focus)
    • 🔄 Search Redirect (Global Search & Swipe Down Redirects + Auto Focus)

🔧 Enhanced Compatibility

  • Fixed Enter key app launch for Launcher 15.6.13 (and hopefully upcoming versions)

đŸŽ¯ Better Auto Focus Control

  • Separate toggles for auto focus behavior:
    • Auto focus when swiping up to app drawer
    • Auto focus when using global search button redirect
    • Auto focus when using swipe down search redirect

đŸ› ī¸ Technical Improvements

  • Massive code cleanup and modularization
  • Shared utility functions to reduce code duplication
  • Upped AGP version to 8.10.1

v1.0.0

Release type: Stable

4/27/2025, 7:02:53 PM

Initial release 🚀