Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.04 KB

README.md

File metadata and controls

33 lines (25 loc) · 1.04 KB

N|Solid N!Solid N!Solid N|Solid Download

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")
    }
}