Quick Start Guide
Start by initialisation.
class App : Application() {
override fun onCreate() {
super.onCreate()
PinLog.initialiseDebug(this)//If you are testing your app
//OR
PinLog.initialiseRelease(this)//If you are releasing your app
PinLog.setDevLogging(true)//Optional
PinLog.setBuildConfigClass(BuildConfig::class.java)//Optional
}
}You are now done with the application class setup.
Logging
Getting saved logs
Deleting saved logs
Listening for new logs
Removing listeners
Last updated