mirror of
https://github.com/TeamVanced/VancedMicroG
synced 2024-11-11 06:39:25 +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
|
||||
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_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 CANCELED = new Status(STATUS_CODE_CANCELED);
|
||||
public static final Status SUCCESS = new Status(0);
|
||||
|
Loading…
Reference in New Issue
Block a user