Skip to content

Conversation

eslamalbaik
Copy link

private static App sApp;
private Thread.UncaughtExceptionHandler defaultHandler = Thread.getDefaultUncaughtExceptionHandler();

@Override
protected void attachBaseContext(Context base) {
    super.attachBaseContext(base);
    new CrashHandler(this, defaultHandler).init(this.getFilesDir());
}

@Override
public void onCreate() {
    super.onCreate();
    sApp = this;
}

public static String getCrashLogDir() {
    return getCrashLogFolder().getAbsolutePath();
}

public static File getCrashLogFolder() {
    return sApp.getFilesDir();
}

public static App getApp() {
    return sApp;
}

public static void showToast(String str, int length) {
    Toast.makeText(getApp(), str, length).show();
}

}

@gui-ribeiro66
Copy link

gui-ribeiro66 commented Apr 19, 2023

suppress

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants