Skip to content

Instantly share code, notes, and snippets.

@ssindher11
Created November 7, 2020 19:01
Show Gist options
  • Save ssindher11/38cdf7be529ddc31ed031defcd13e3e8 to your computer and use it in GitHub Desktop.
Save ssindher11/38cdf7be529ddc31ed031defcd13e3e8 to your computer and use it in GitHub Desktop.
package com.ssindher.bugfendertut
import android.app.Application
import com.bugfender.android.BuildConfig
import com.bugfender.sdk.Bugfender
class App : Application() {
override fun onCreate() {
super.onCreate()
// Initialise Bugfender
Bugfender.init(this, "YOUR_APP_KEY", BuildConfig.DEBUG)
Bugfender.enableCrashReporting()
Bugfender.enableUIEventLogging(this)
Bugfender.enableLogcatLogging()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment