Android App日志记录系统,提供了一种用于收集和查看系统调试输出的机制。让你的App在发布之后也可以查看详细日志。
接入方式:
Step 1. Add the JitPack repository to your build file
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Step 2. Add the dependency
dependencies {
implementation 'com.github.wuyajun7:Logcat:1.1.0.1'
}