Skip to content

Instantly share code, notes, and snippets.

@eric-romero
Created October 28, 2021 23:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eric-romero/d2b26c0075d8f861593aa4b1dce33b98 to your computer and use it in GitHub Desktop.
Save eric-romero/d2b26c0075d8f861593aa4b1dce33b98 to your computer and use it in GitHub Desktop.
class MyActivity : Activity() {
override fun onResume() {
super.onResume()
// AppCenter stores the stack trace for previous crashes
if (Crashes.hasCrashedInLastSession().get()) {
val report = Crashes.getLastSessionCrashReport().get()
val oom = report.stackTrace.substringBefore("\n").contains("OutOfMemory")
if (oom) {
eventLogger.reportAppCrashFromOOM()
}
}
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment