Skip to main content

Sauce Mobile App Distribution (TestFairy) Crash Handler

To use the Sauce Mobile App Distribution SDK as a crash handler without any other Sauce Mobile App Distribution 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");
}
}