Description
A small tool to log your application inside your application with a floating UI component
AndroidMiniDebugger alternatives and similar packages
Based on the "Debug" category.
Alternatively, view AndroidMiniDebugger alternatives based on common mentions on social networks and blogs.
-
Android Debug Database
A library for debugging android databases and shared preferences - Make Debugging Great Again -
Pidcat
Colored logcat script which only shows log entries for a specific application package. -
ADB Enhanced
🔪Swiss-army knife for Android testing and development 🔪 ⛺ -
Linx
Lynx is an Android library created to show a custom view with all the information Android logcat is printing, different traces of different levels will be rendererd to show from log messages to your application exceptions. You can filter this traces, share your logcat to other apps, configure the max number of traces to show or the sampling rate used by the library. -
RxJava2Debug
RxJava 2.x extension to provide meaningful Stack Traces -
android-grid-wichterle
This app will show grid overlay over whole system which helps you to verify your excellent app design. -
Under the Hood
Under the Hood is a flexible and powerful Android debug view library. It uses a modular template system that can be easily extended to your needs, although coming with many useful elements built-in. -
Android Snooper
Android library to record the network calls through the interceptor mechanism of the http clients. -
Android DebugPort
A Read-Eval-Print-Loop server for Android and SQLite -
Goreinu
Goreinu allows to copy application files on sdcard. -
traffic monitor
traffic debugging library for android -
Zabbix Unifi Video
Zabbix monitoring for Unifi Video -
AppSpector
Remote Android and iOS debugging and data collection service. You can debug networking, logs, SQLite and mock device's geo location.
Appwrite - The open-source backend cloud platform
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of AndroidMiniDebugger or a related project?
README
AndroidMiniDebugger 
A small tool to log your application inside your application with a floating UI component
Preview
Usage:
Step 1
Add it in your root build.gradle:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Step 2
Add dependencies in build.gradle.
dependencies {
implementation 'com.github.symphonyrecords:androidminidebugger:1.1.1'
}
Step 3
Start the logging service:
Intent intent = new Intent(this, DebuggerService.class);
this.stopService(intent);
ContextCompat.startForegroundService(this, intent);
Step 4
Finally use SRLog.java instead of android Log class:
SRLog.d(TAG, "Message");
Note: don't forget to grant "Draw over other apps" permission (Look into Example.java).