We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9c01c0 commit 9630ff1Copy full SHA for 9630ff1
firebase-crashlytics/src/main/java/com/google/firebase/crashlytics/internal/common/Utils.java
@@ -27,10 +27,10 @@
27
@SuppressWarnings({"ResultOfMethodCallIgnored", "UnusedReturnValue"})
28
public final class Utils {
29
/** Timeout in milliseconds for blocking on background threads. */
30
- private static final int BACKGROUND_TIMEOUT_MILLIS = 3_000;
+ private static final int BACKGROUND_TIMEOUT_MILLIS = 4_000;
31
32
/** Timeout in milliseconds for blocking on the main thread. Be careful about ANRs. */
33
- private static final int MAIN_TIMEOUT_MILLIS = 2_000;
+ private static final int MAIN_TIMEOUT_MILLIS = 3_000;
34
35
/**
36
* Blocks until the given Task completes, and then returns the value the Task was resolved with,
0 commit comments