You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: firebase-appdistribution/src/main/java/com/google/firebase/appdistribution/FirebaseAppDistributionException.java
+15-13Lines changed: 15 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -31,18 +31,20 @@ public enum Status {
31
31
*/
32
32
AUTHENTICATION_FAILURE,
33
33
34
-
/** The authentication process was canceled (typically by the user). */
34
+
/** The authentication process was canceled (typically by the tester). */
35
35
AUTHENTICATION_CANCELED,
36
36
37
37
/**
38
-
* No network is available to make requests, or the request timed out. Check your internet
39
-
* connection and try again.
38
+
* No network was available to make requests, or the request timed out. Check the tester's
39
+
* internet connection and retrying the call to {@link FirebaseAppDistribution}.
40
40
*/
41
41
NETWORK_FAILURE,
42
42
43
43
/**
44
-
* The new release failed to download. This is a most likely due to a transient condition and
45
-
* may be corrected by retrying.
44
+
* The new release failed to download. This was a most likely due to a transient condition and
45
+
* may be corrected by retrying the call to {@link
46
+
* FirebaseAppDistribution#updateIfNewReleaseAvailable} or {@link
47
+
* FirebaseAppDistribution#updateApp}.
46
48
*/
47
49
DOWNLOAD_FAILURE,
48
50
@@ -52,13 +54,13 @@ public enum Status {
52
54
*/
53
55
INSTALLATION_FAILURE,
54
56
55
-
/** The installation was canceled (typically by the user). */
57
+
/** The installation was canceled (typically by the tester). */
56
58
INSTALLATION_CANCELED,
57
59
58
60
/**
59
-
* An update is not available for the current tester and app. Make sure that {@link
60
-
* FirebaseAppDistribution#checkForNewRelease()} returns with a non-null {@link
61
-
* AppDistributionRelease} before calling {@link FirebaseAppDistribution#updateApp()},
61
+
* An update was not available for the current tester and app. Make sure that {@link
62
+
* FirebaseAppDistribution#checkForNewRelease} returns with a non-null {@link
63
+
* AppDistributionRelease} before calling {@link FirebaseAppDistribution#updateApp},
62
64
*/
63
65
UPDATE_NOT_AVAILABLE,
64
66
@@ -128,7 +130,7 @@ static class ErrorMessages {
128
130
"Failed to fetch releases due to unknown network error.";
129
131
130
132
publicstaticfinalStringJSON_PARSING_ERROR =
131
-
"Error parsing service response when checking for new release. This is a most likely due to a transient condition and may be corrected by retrying.";
133
+
"Error parsing service response when checking for new release. This was most likely due to a transient condition and may be corrected by retrying.";
132
134
133
135
publicstaticfinalStringAUTHENTICATION_ERROR =
134
136
"Failed to authenticate the tester. The tester was either not signed in, or something went wrong. Try signing in again.";
@@ -139,17 +141,17 @@ static class ErrorMessages {
139
141
publicstaticfinalStringAUTHENTICATION_CANCELED = "Tester canceled the authentication flow.";
140
142
141
143
publicstaticfinalStringNOT_FOUND_ERROR =
142
-
"Release not found. An update is not available for the current tester and app. Make sure that FirebaseAppDistribution#checkForNewRelease returns with a non-null AppDistributionRelease before calling FirebaseAppDistribution#updateApp";
144
+
"Release not found. An update was not available for the current tester and app. Make sure that FirebaseAppDistribution#checkForNewRelease returns with a non-null AppDistributionRelease before calling FirebaseAppDistribution#updateApp";
143
145
144
146
publicstaticfinalStringTIMEOUT_ERROR =
145
-
"Failed to fetch releases due to timeout. Check your internet connection and try again.";
147
+
"Failed to fetch releases due to timeout. Check the tester's internet connection and try again.";
146
148
147
149
publicstaticfinalStringUPDATE_CANCELED = "Tester canceled the update.";
Copy file name to clipboardExpand all lines: firebase-appdistribution/src/main/java/com/google/firebase/appdistribution/internal/SignInResultActivity.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ public class SignInResultActivity extends AppCompatActivity {
0 commit comments