Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Master #16

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
Open

Master #16

wants to merge 10 commits into from

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