Android App日志記錄系統(tǒng),提供了一種用于收集和查看系統(tǒng)調(diào)試輸出的機制。讓你的App在發(fā)布之后也可以查看詳細(xì)日志。

日志系統(tǒng)效果
接入方式:
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'
}