Andzu
In-App Android Debugging Tool With Enhanced Logging, Networking Info, Crash reporting And More.
The debugger tool for Android developer. Display logs, network request, while using the app. Easy accessible with its bubble head button
Usage
- Extend your Application class from "AndzuApp" and onCreate call initAndzu() method for show Bubble
public class App extends AndzuApp { @Override public void onCreate() { super.onCreate(); initAndzu(); } }
- For Network Request Log addInterceptor "AndzuInterceptor"
LoggingInterceptor interceptor = new LoggingInterceptor(); OkHttpClient client = new OkHttpClient.Builder() .addInterceptor(interceptor) .build();
- For App Log user Logger log method.
Logger.inf("info"); Logger.err("error",Logger.HI_PRI); Logger.d("debug"); Logger.v("verbose",Logger.LOW_PRI); Logger.w("warn");
- That's it
Installation
Download the latest JAR or grab via Maven:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.isacan</groupId>
<artifactId>Andzu</artifactId>
<version>0.53</version>
</dependency>
or Gradle: Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven {
url 'https://jitpack.io'
}
}
}
Add the dependency
dependencies {
compile 'com.github.isacan:Andzu:0.53'
}
Contact
- ?sa Can Akkoca
- Twitter @isa_can
- LinkedIn https://www.linkedin.com/in/isa-can-akkoca-37650b2a/
Inspiration
https://github.com/remirobert/Dotzu
License
Andzu is released under the MIT License.