The all-in-one Android debugging toolkit with 22 features, zero release build risk, and no desktop app required.
See it in action
Replace multiple debug libraries with one. Explore by category.
Full request/response capture with headers, body, timing, and TLS info. Syntax-highlighted JSON/XML.
Native interceptor for OkHttp and a Ktor client plugin. Both with the same feature set.
Export any captured request as a cURL command to share with your backend team.

Other tools rely on ProGuard rules or runtime flags. WormaCeptor uses Gradle’s debugImplementation — the code literally does not exist in your release APK.
The code doesn’t exist in release. Not disabled. Not hidden. Gone.
Add the dependency. Init. Intercept. That’s it.
Add dependencies
dependencies {
implementation("com.github.azikar24.WormaCeptor:api-client:2.2.1")
debugImplementation("com.github.azikar24.WormaCeptor:api-impl-persistence:2.2.1")
}Initialize
class MyApp : Application() {
override fun onCreate() {
super.onCreate()
WormaCeptorApi.init(this)
}
}Add interceptor
val client = OkHttpClient.Builder()
.addInterceptor(WormaCeptorInterceptor())
.build()val client = HttpClient(CIO) {
install(WormaCeptorKtorPlugin)
}WormaCeptor extends beyond network inspection. Chucker is excellent at HTTP traffic — WormaCeptor covers the rest.
| Feature | Chucker | WormaCeptor |
|---|---|---|
| Network Inspection | HTTP only | HTTP + WebSocket + WebView |
| HTTP Client Support | OkHttp | OkHttp + Ktor (native) |
| Release Safety | ProGuard no-op | Physical debugImplementation |
| Performance Monitor | — | FPS + Memory + CPU overlay |
| SQLite Browser | — | Built-in with query execution |
| SharedPreferences | — | Built-in viewer & editor |
| Leak Detection | — | Built-in (Activities/Fragments) |
| Crash Reporting | — | Integrated with stack traces |
| Push Simulator | — | Simulated notifications with FCM-like payloads |
| Location Mocking | — | Mock location via Android provider API |
| Deep Links | — | wormaceptor:// to every tool |
| Feature Toggles | — | 22 toggleable features |
| Tech Stack | Partial Kotlin / XML Views | 100% Kotlin + Jetpack Compose |
Real scenarios Android developers face every day.
One dependency. 22 tools. Zero risk.
Stop juggling multiple debug libraries and custom menus. One dependency covers everything.
MIT Licensed · API 23+ · 100% Kotlin