Skip to content

Instantly share code, notes, and snippets.

View zjyangyong's full-sized avatar

HonB zjyangyong

View GitHub Profile
@zjyangyong
zjyangyong / OomExceptionHandler.java
Last active November 23, 2016 01:31 — forked from pyricau/OomExceptionHandler.java
Dump the heap on OutOfMemoryError crashes in your debug builds.
import android.content.Context;
import android.os.Debug;
import java.io.File;
public class OomExceptionHandler implements Thread.UncaughtExceptionHandler {
private static final String FILENAME = "out-of-memory.hprof";
public static void install(Context context) {
Thread.UncaughtExceptionHandler defaultHandler = Thread.getDefaultUncaughtExceptionHandler();