Skip to main content

TestFairy Crash Handler

To use the TestFairy SDK as a crash handler without any other TestFairy feature, use the code example below.

TestFairy.installCrashHandler(this, "APP_TOKEN");
Example
import com.testfairy.TestFairy;

public class MyApplication extends Application {
@Override
public void onCreate() {
super.onCreate();

TestFairy.installCrashHandler(this, "APP_TOKEN");
}
}