We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47699fb commit 95b0164Copy full SHA for 95b0164
1 file changed
src/main/java/com/akaita/java/rxjava2debug/RxJava2Debug.java
@@ -30,6 +30,14 @@ public class RxJava2Debug {
30
private @Nullable
31
static String[] basePackages;
32
33
+ /**
34
+ * Enable a system to collect information about RxJava's execution to provide a more meaningful StackTrace in case of crash<br/>
35
+ * <b>Beware:</b> Any crash-reporting handler should be set up <i>before</i> calling this method
36
+ */
37
+ public static void enableRxJava2AssemblyTracking() {
38
+ enableRxJava2AssemblyTracking(null);
39
+ }
40
+
41
/**
42
* Enable a system to collect information about RxJava's execution to provide a more meaningful StackTrace in case of crash<br/>
43
* <b>Beware:</b> Any crash-reporting handler should be set up <i>before</i> calling this method
0 commit comments