LinkableLogApp

Additional

Language
Kotlin
Version
0.4 (Oct 6, 2019)
Created
Oct 2, 2019
Updated
Jun 22, 2020 (Retired)
Owner
Hitesh Dhamshaniya (hitesh-dhamshaniya)
Contributor
Hitesh Dhamshaniya (hitesh-dhamshaniya)
1
Activity
Badge
Generate
Download
Source code

Advertisement

LinkableLogApp

The power of android logcat, now developer can jump right to the log printed from.

Easy to Intsall

implementation 'com.github.dhl:linkablelog:0.4'

Usage

import androidx.appcompat.app.AppCompatActivity
import kotlinx.android.synthetic.main.activity_main.*
import com.github.dhl.linkablelog.Log


class MainActivity : AppCompatActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)

    }

    private fun printSampleLog() {
        Log.d("SimpleLog","Click here to see code")
    }
}