mirror of
https://github.com/TeamVanced/VancedMicroG
synced 2024-12-05 02:12:54 +01:00
Add Firebase auth api
This commit is contained in:
parent
c6f5d25850
commit
7f5440d36e
@ -0,0 +1,5 @@
|
|||||||
|
package com.google.firebase.auth.api.internal;
|
||||||
|
|
||||||
|
interface IFirebaseAuthService {
|
||||||
|
|
||||||
|
}
|
@ -28,9 +28,11 @@ import org.microg.safeparcel.AutoSafeParcelable;
|
|||||||
*/
|
*/
|
||||||
@PublicApi
|
@PublicApi
|
||||||
public final class Status extends AutoSafeParcelable implements Result {
|
public final class Status extends AutoSafeParcelable implements Result {
|
||||||
|
private static final int STATUS_CODE_INTERNAL_ERROR = 8;
|
||||||
private static final int STATUS_CODE_INTERRUPTED = 14;
|
private static final int STATUS_CODE_INTERRUPTED = 14;
|
||||||
private static final int STATUS_CODE_CANCELED = 16;
|
private static final int STATUS_CODE_CANCELED = 16;
|
||||||
|
|
||||||
|
public static final Status INTERNAL_ERROR = new Status(STATUS_CODE_INTERNAL_ERROR);
|
||||||
public static final Status INTERRUPTED = new Status(STATUS_CODE_INTERRUPTED);
|
public static final Status INTERRUPTED = new Status(STATUS_CODE_INTERRUPTED);
|
||||||
public static final Status CANCELED = new Status(STATUS_CODE_CANCELED);
|
public static final Status CANCELED = new Status(STATUS_CODE_CANCELED);
|
||||||
public static final Status SUCCESS = new Status(0);
|
public static final Status SUCCESS = new Status(0);
|
||||||
|
Loading…
Reference in New Issue
Block a user