Strip out bloatware, let AI expose the apps quietly tracking you, and unlock real performance β all over ADB, with no root, no account, and zero telemetry.
Website Β· Features Β· Pro Β· Screenshots Β· Quick Start Β· Architecture Β· Contributing Β· FAQ
Zephyr's Elixir is a free, open-source Android debloater and optimization toolkit for Windows. It talks to your phone over ADB β the same debugging bridge used by developers β to do what your manufacturer would rather you didn't: remove pre-installed bloatware, disable hidden trackers, and squeeze real performance out of any Android device, from Samsung and Xiaomi to Pixel and OnePlus. No root. No account. No telemetry. Just a gentle, thorough wind through your phone's system. π
Like a zephyr, it's light β and like an elixir, it leaves your device feeling new.
| π 100% Free Core | π No Root Required | βοΈ Apache-2.0 Open Source |
| Ten full tools, free forever β no ads, no tracking | Works over plain ADB on any Android with USB debugging | The entire desktop app you're reading about is in this repo |
| Tool | What it does |
|---|---|
| ποΈ Complete Debloater | Disable, uninstall or restore any user or system app without root β and the History tab reinstalls anything you change your mind about, in one click. |
| β‘ 120-Step Optimizer | One button runs a seven-stage pipeline β cache, memory, deep storage, network, system tuning, package compile and DEX β with every ADB command streamed live to the console. |
| π€ AI Bloatware Intelligence | A cloud AI rates every app Safe, Caution or Critical and exposes the spyware, ad-injectors and telemetry hiding in your system apps. 25 free scans a day. |
| π‘οΈ Private DNS | Switch to NextDNS, AdGuard, Cloudflare, Google or Quad9 with live latency pings β block ads and trackers network-wide in two clicks. |
| π‘ Wireless ADB | Cut the cable. Full Wi-Fi control with Android 10 legacy mode and the Android 11+ pairing-code protocol β set up in ~30 seconds. |
| π¦ APK Installer | Install APK, XAPK, APKS and APKM files directly, with automatic extraction for split-APK and bundle formats. |
| π File Manager | Browse your device's storage and push or pull files straight from your PC β no third-party app required. |
| β¨οΈ ADB Shell Console | A built-in, multi-tab interactive ADB shell for power users who want to run commands by hand. |
| π Power Options | Reboot to system, recovery, bootloader or fastbootd β and sideload OTA packages β without memorizing a single key combo. |
| π¬ Animation Control | Drag one slider to speed up every system animation in lockstep, or switch them off for a UI that feels instant. |
For those who want the storm, not just the breeze. Pro is delivered as a separately signed, encrypted module that is verified at runtime and bound to your device β and it funds the free core for everyone.
| Pro feature | What it unlocks |
|---|---|
| π Performance Monitor | Real-time CPU, RAM, network and battery telemetry in a live dashboard. |
| β‘ Extreme Mode | A deeper optimization pass: kills services, freezes cached apps, enables the multi-core scheduler and speed-compiles every package. |
| π₯οΈ Screen Mirror | Low-latency mirroring with full mouse-and-keyboard control of your phone from the desktop. |
| π₯ Screen Recording | Capture your device screen in high quality, straight from the mirror window. |
| π‘οΈ Privacy Suite | One-click toggles to disable Safety Core, reset your Ad ID, block captive portals, rein in Play Services and switch off RAM expansion. |
| πΎ APK Backup | Automatically back up an app's APK to your PC before you uninstall it. |
| π₯ Multi-APK Install | Queue and install multiple APKs β and split-APK bundles β in a single operation. |
| π€ Unlimited AI Scans | No daily cap on AI bloatware analysis, plus priority support. |
From $3.33/month β see plans on the purchase page β
![]() Home β your device at a glance |
![]() Debloat β AI-rated app removal |
![]() Tools β installer, files, shell & more |
![]() Screen Mirror β control your phone from your PC β |
More in the illustrated user guide β
You need: a Windows 10/11 (x64) PC Β· an Android phone Β· a USB cable (or Wi-Fi for Wireless ADB). ADB itself ships inside the app β nothing else to install.
- Download the installer and run it.
- On your phone, enable Developer Options β USB debugging (tap Build Number 7 times β the guide walks you through it with pictures).
- Plug in, accept the "Allow USB debugging?" prompt on the phone, and you're connected.
- Pick your potion: ποΈ Debloat, β‘ Optimize, or explore the π§° Tools.
git clone https://github.com/blast752/zephyrs-elixir.git
cd zephyrs-elixir
dotnet build -c Release
# β bin/Release/net8.0-windows/ZephyrsElixir.exeRequires the .NET 8 SDK on Windows. The open-source app builds and runs fully without the Pro module β Pro simply lights up extra features when a licensed module is present.
Zephyr's Elixir follows an open-core model β the same approach used by GitLab, Mattermost and many other projects. Everything the free app does lives in this repository under Apache-2.0. Pro features live in a separate, closed-source module that the app loads at runtime after license verification.
flowchart LR
subgraph PC["π₯οΈ Windows PC"]
ZE["Zephyr's Elixir<br/>WPF Β· .NET 8<br/><b>this repo Β· Apache-2.0</b>"]
PRO["Pro Module<br/>signed & encrypted DLL<br/><i>closed source</i>"]
ADB["ADB<br/>bundled platform-tools"]
end
subgraph PHONE["π± Android device"]
AGENT["ZephyrsAgent<br/>on-device helper"]
SYS["Android system"]
end
PRO -. "loaded at runtime<br/>license-verified" .-> ZE
ZE --> ADB
ADB -- "USB Β· Wi-Fi" --> SYS
ADB --> AGENT
style ZE fill:#0B2041,stroke:#00BFFF,color:#ffffff
style PRO fill:#1a1a0b,stroke:#FFD700,color:#ffffff
style ADB fill:#0B2041,stroke:#63B5FF,color:#ffffff
style AGENT fill:#0B2041,stroke:#00E676,color:#ffffff
style SYS fill:#0B2041,stroke:#63B5FF,color:#ffffff
| Component | What it is | License |
|---|---|---|
| Desktop app (this repo) | The complete WPF application: debloater, optimizer, tools, licensing bridge, localization | Apache-2.0 β |
| ZephyrsAgent | On-device helper the app deploys over ADB for richer device data | Bundled with the app |
| Pro module | Performance Monitor, Screen Mirror & co. β distributed via zephyrselixir.com | Proprietary β |
Why open core? You can audit every command the free app ever sends to your phone β a tool that promises zero telemetry should let you check. Pro funds the development of both.
π Localization: English and Italiano ship today β the app is fully resource-localized (Localization/), so new languages are easy contributions.
Every kind of wind moves the project forward:
- π Found a bug? Open an issue with your Windows + Android versions and what happened.
- π‘ Have an idea? Come talk in the Telegram community β features are discussed there first.
- π Want to code? Fork β branch β PR. Keep PRs focused, match the existing code style, and make sure
dotnet build -c Releaseis clean. - π Speak another language? Add a
Strings.<lang>.resxβ translations are the friendliest first PR.
π History lives in the changelog Β· π updates in the release feed.
Do I need to root my phone?
No. Everything works over plain ADB (Android Debug Bridge) with USB debugging enabled β the official mechanism Android exposes to developers. Your warranty-sensitive bits stay untouched.
Is debloating safe? What if I remove the wrong app?
The debloater keeps a History tab β anything you disable or uninstall can be restored in one click. The AI risk ratings (Safe / Caution / Critical) tell you what's a tracker and what's load-bearing before you touch it, and the console shows you every command as it runs. Nothing happens behind your back.
Which devices are supported?
Any Android phone or tablet that supports USB debugging β Samsung, Xiaomi, OnePlus, Pixel, Motorola, and everything in between. Wireless ADB needs Android 10+ (pairing-code flow on Android 11+).
Is the whole app really open source?
The entire free application β everything described in the free toolkit above, including the license bridge itself β is in this repo under Apache-2.0. The Pro module is a separate closed-source add-on: that's the open-core model that keeps the free tool free.
What data does it collect?
The app has zero telemetry, no ads, and needs no account. The only network calls it makes are the ones that serve you: the optional cloud AI scan, update checks, and the Pro license check if you buy Pro. See the privacy policy.
If Zephyr's Elixir gave your Android a second wind, the best ways to send some back:
β Star this repo β it's the wind in the project's sails
π£ Share it with someone whose phone is drowning in bloatware
π¬ Join the Telegram Β· β Go Pro to fund the free core
- The desktop application in this repository is licensed under Apache-2.0.
- The Pro module is proprietary software distributed separately via zephyrselixir.com.
- Privacy Policy Β· Terms of Service
- Android is a trademark of Google LLC. Zephyr's Elixir is an independent project, not affiliated with or endorsed by Google. You modify your own device at your own discretion β the History tab has your back.
Zephyr's Elixir β crafted with π by Blast752 Β· zephyrselixir@gmail.com
May a fair wind clear your phone. π




