File tree Expand file tree Collapse file tree 3 files changed +30
-0
lines changed
library/src/main/java/com/firebase/ui/auth Expand file tree Collapse file tree 3 files changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ package com .firebase .ui .auth .core ;
2
+
3
+ public class FirebaseResponse {
4
+ public static int WRONG_CREDENTIALS = 0 ;
5
+ public static int PROVIDER_NOT_ENABLED = 1 ;
6
+ public static int LOGIN_CANCELLED = 2 ;
7
+ public static int MISC_PROVIDER_ERROR = 3 ;
8
+ public static int INVALID_PROVIDER_APP_ID = 4 ;
9
+ public static int INVALID_PROVIDER_APP_KEY = 5 ;
10
+ public static int MISSING_PROVIDER_APP_ID = 6 ;
11
+ public static int MISSING_PROVIDER_APP_KEY = 7 ;
12
+ }
Original file line number Diff line number Diff line change
1
+ package com .firebase .ui .auth .google ;
2
+
3
+ public class GoogleActions {
4
+ private static int base = 1000 ;
5
+ public static int REQUEST = base +0 ;
6
+ public static int SUCCESS = base +1 ;
7
+ public static int PROVIDER_ERROR = base +2 ;
8
+ public static int USER_ERROR = base +3 ;
9
+ }
Original file line number Diff line number Diff line change
1
+ package com .firebase .ui .auth .twitter ;
2
+
3
+ public class TwitterActions {
4
+ private static int base = 2000 ;
5
+ public static int REQUEST = base +0 ;
6
+ public static int SUCCESS = base +1 ;
7
+ public static int PROVIDER_ERROR = base +2 ;
8
+ public static int USER_ERROR = base +3 ;
9
+ }
You can’t perform that action at this time.
0 commit comments