Introduction
WormaCeptor is the all-in-one Android debugging toolkit with 20 features, zero release build risk, and no desktop app required.
Welcome to WormaCeptor
WormaCeptor V2 is a production-safe, modular Android debugging toolkit. It provides 20 debugging features — network inspection, performance monitoring, database browsing, leak detection, crash reporting, and more — all running on-device with zero desktop dependencies.
Why WormaCeptor?
- Ship with confidence — Debug code is physically absent from release builds via
debugImplementation. No ProGuard rules, no runtime flags, no accidents. - Debug faster without leaving your device — No desktop app, no Chrome DevTools, no USB cable required.
- One dependency instead of six — Replace Chucker + LeakCanary + custom monitors with a single toolkit.
Quick Start
dependencies {
implementation("com.github.azikar24.WormaCeptor:api-client:2.2.1")
debugImplementation("com.github.azikar24.WormaCeptor:api-impl-persistence:2.2.1")
}class MyApp : Application() {
override fun onCreate() {
super.onCreate()
WormaCeptorApi.init(this)
}
}val client = OkHttpClient.Builder()
.addInterceptor(WormaCeptorInterceptor())
.build()Head to the Installation guide for the full setup, or check Quick Start for the minimal integration.