ScreenLogger了解一下

ScreenLogger – 一个简单可用的屏幕日志插件

How to Use it?

  1. Add it in your root build.gradle at the end of repositories:
1
2
3
4
5
6
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}

Add the dependency

1
2
3
dependencies {
implementation 'com.github.BestDI:ScreenLogger:v1.0'
}

  1. init in your application:
    1
    2
    3
    4
    5
    6
    7
    8
    override 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

  1. request permission(above android 6.0)

  2. tracking log

  3. log details

使用Kotlin编写的屏幕Log,帮助开发定位API,脱离IDE看日志的痛点。

0%