Skip to content

Commit 17c2f9b

Browse files
committed
Adds new action files
1 parent 4fe329b commit 17c2f9b

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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+
}

0 commit comments

Comments
 (0)