A minimal, ultra-lightweight (~61 KB) Android app that easily manages adb_enabled to bypass financial app debug detection.
To use HDB, install the APK and grant the WRITE_SECURE_SETTINGS permission via ADB (one-time setup):
adb install hdb-v1.1.0.apkWRITE_SECURE_SETTINGS cannot be granted through normal installation. You must grant it via ADB (one-time):
adb shell pm grant dev.e88e89.hdb android.permission.WRITE_SECURE_SETTINGSOnce granted, you can toggle adb_enabled directly from the Quick Settings panel or inside the app.
Many financial/banking apps check Settings.Global.ADB_ENABLED == 1 to detect USB debugging. By setting the value to 2, these simple equality checks fail — the app thinks ADB is off, while Android still treats any non-zero value as enabled.
HDB provides a quick and native way to manage this setting.
- Quick Settings Tile: Toggle ADB directly from the quick settings panel
- Configurable value: Choose between 0, 1, or 2
- Pure Native UI: No heavy Material or AppCompat dependencies, reducing APK size to ~61 KB
- i18n: English and Traditional Chinese
| adb_enabled | ADB Functional | Financial App Detection |
|---|---|---|
| 0 | No | Passes (ADB off) |
| 1 | Yes | Detected |
| 2 | Yes | Passes (≠ 1) |
Tested with adb_enabled = 2:
The vast majority of Taiwanese banking and payment apps pass detection without issues.
Note: Apps that use more sophisticated detection methods (e.g. checking USB connection state, ro.debuggable, or using attestation APIs) may still detect debugging regardless of the adb_enabled value.
Requires Java 17 and Android SDK.
./gradlew assembleReleaseThe compiled APK will be output to app/build/outputs/apk/release/app-release.apk.
This project is licensed under the GNU General Public License v3.0.
一個極簡且極輕量的 Android App (約 61 KB),用來快速切換 adb_enabled,以繞過金融 APP 的偵錯偵測。
| 應用程式介面 | 快速設定面板 |
|---|---|
![]() |
![]() |
使用本 APP 需先安裝 APK,並透過 ADB 授予 WRITE_SECURE_SETTINGS 權限(僅需授權一次):
adb install hdb-v1.1.0.apkWRITE_SECURE_SETTINGS 無法透過一般安裝取得,必須透過 ADB 授權(一次性):
adb shell pm grant dev.e88e89.hdb android.permission.WRITE_SECURE_SETTINGS完成授權後,即可透過狀態列的「快速設定面板 (Quick Settings Tile)」或在 APP 內直接切換 adb_enabled 狀態。
許多金融與銀行 APP 透過 Settings.Global.ADB_ENABLED == 1 偵測 USB 偵錯模式。將值設為 2,這些簡單的相等檢查就會失敗,APP 認為 ADB 已關閉,但 Android 系統仍將非零值視為啟用。
荷包蛋 (HDB) 提供最簡單原生的方式來切換此狀態。
- 快速設定面板 (Quick Settings Tile): 支援在狀態列下拉選單中直接切換狀態
- 可自訂數值: 可選擇 0、1 或 2
- 純原生 UI: 無多餘的 Material 或 AppCompat 依賴,APK 體積縮減至 ~61 KB
- 多語言支援: 英文及繁體中文
| adb_enabled | ADB 可用 | 金融 APP 偵測 |
|---|---|---|
| 0 | No | 通過 (ADB 關閉) |
| 1 | Yes | 被偵測 |
| 2 | Yes | 通過 (≠ 1) |
以 adb_enabled = 2 測試:
| APP | 狀態 | 備註 |
|---|---|---|
| iPASS MONEY (一卡通) | 通過 | |
| 全支付 | 通過 | |
| 悠遊付 (Easy Wallet) | 通過 | |
| 台北富邦銀行 | 通過 | |
| 富邦 AI Pro | 通過 | |
| 行動郵局 | 通過 | |
| 街口支付 | 通過 | |
| 國泰世華 | 通過 | |
| 中國信託 | 通過 | |
| OPEN POINT | 通過 | |
| 國泰證券 | 警告 | 會顯示警告,但不影響使用 |
| 將來銀行 | 警告 | 轉帳功能受限 |
| 全家便利商店 | 阻擋 | 拒絕啟動 |
注意: 使用更進階偵測方式的 APP (如檢查 USB 連線狀態、ro.debuggable 或使用 attestation API) 可能仍會偵測到偵錯模式,不受 adb_enabled 值影響。
自行建構需要 Java 17 及 Android SDK:
./gradlew assembleRelease編譯完成的 APK 位於 app/build/outputs/apk/release/app-release.apk。
本專案採用 GNU General Public License v3.0 授權。

