CommonStatusCodes.java
1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package com.google.android.gms.common.api;
import android.support.annotation.NonNull;
public class CommonStatusCodes
{
public static final int API_NOT_CONNECTED = 17;
public static final int CANCELED = 16;
public static final int DEAD_CLIENT = 18;
public static final int DEVELOPER_ERROR = 10;
public static final int ERROR = 13;
public static final int INTERNAL_ERROR = 8;
public static final int INTERRUPTED = 14;
public static final int INVALID_ACCOUNT = 5;
public static final int NETWORK_ERROR = 7;
public static final int RESOLUTION_REQUIRED = 6;
@Deprecated
public static final int SERVICE_DISABLED = 3;
@Deprecated
public static final int SERVICE_VERSION_UPDATE_REQUIRED = 2;
public static final int SIGN_IN_REQUIRED = 4;
public static final int SUCCESS = 0;
public static final int SUCCESS_CACHE = -1;
public static final int TIMEOUT = 15;
@NonNull
public static String getStatusCodeString(int paramInt)
{
switch (paramInt)
{
case 1:
case 9:
case 11:
case 12:
default:
return 32 + "unknown status code: " + paramInt;
case -1:
return "SUCCESS_CACHE";
case 0:
return "SUCCESS";
case 2:
return "SERVICE_VERSION_UPDATE_REQUIRED";
case 3:
return "SERVICE_DISABLED";
case 4:
return "SIGN_IN_REQUIRED";
case 5:
return "INVALID_ACCOUNT";
case 6:
return "RESOLUTION_REQUIRED";
case 7:
return "NETWORK_ERROR";
case 8:
return "INTERNAL_ERROR";
case 10:
return "DEVELOPER_ERROR";
case 13:
return "ERROR";
case 14:
return "INTERRUPTED";
case 15:
return "TIMEOUT";
case 16:
return "CANCELED";
case 17:
return "API_NOT_CONNECTED";
}
return "DEAD_CLIENT";
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/com/google/android/gms/common/api/CommonStatusCodes.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/