Skip to content

Instantly share code, notes, and snippets.

View franklinharper's full-sized avatar

Frank Harper franklinharper

View GitHub Profile
@franklinharper
franklinharper / gist:4b1ea4c1237d3055d903d864c106cf08
Last active April 16, 2020 15:12
Android global Activity lifecycle logging

If custom App class doesn't yet exist

Create custom App class

class App: Application() {

    override fun onCreate() {
        super.onCreate()
        registerActivityLifecycleCallbacks(ActivityLifecycleLogger())

}