ScreenLogger – 一个简单可用的屏幕日志插件
How to Use it?
- Add it in your root build.gradle at the end of repositories:
1 | allprojects { |
Add the dependency1
2
3dependencies {
implementation 'com.github.BestDI:ScreenLogger:v1.0'
}
- init in your application:
1
2
3
4
5
6
7
8override fun onCreate() {
super.onCreate()
ProcessLifecycleOwner.get().lifecycle.apply {
val isEnable = true // 可以通过isEnable的状态控制是否打开ScreenLog
addObserver(LoggerLifecycleObserver(this@MainApplication, isEnable))
}
}
now, you could use it:1
Logger.warn("TAG", "hello from button")
or you could use:typealias ScreenLogger = Logger
use result
request permission(above android 6.0)
tracking log
log details
使用Kotlin编写的屏幕Log,帮助开发定位API,脱离IDE看日志的痛点。