43 lines
1.5 KiB
Java
43 lines
1.5 KiB
Java
|
package com.google.firebase.auth;
|
||
|
|
||
|
import android.os.Parcel;
|
||
|
import android.os.Parcelable;
|
||
|
import com.google.android.gms.common.internal.safeparcel.AbstractSafeParcelable;
|
||
|
import com.google.android.gms.common.internal.safeparcel.SafeParcelWriter;
|
||
|
import com.google.android.gms.common.logging.Logger;
|
||
|
import com.google.firebase.FirebaseException;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public class PhoneAuthProvider {
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public static class ForceResendingToken extends AbstractSafeParcelable {
|
||
|
public static final Parcelable.Creator<ForceResendingToken> CREATOR = new zzd();
|
||
|
|
||
|
public static ForceResendingToken zza() {
|
||
|
return new ForceResendingToken();
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final void writeToParcel(Parcel parcel, int i) {
|
||
|
SafeParcelWriter.finishObjectHeader(parcel, SafeParcelWriter.beginObjectHeader(parcel));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public static abstract class OnVerificationStateChangedCallbacks {
|
||
|
private static final Logger zza = new Logger("PhoneAuthProvider", new String[0]);
|
||
|
|
||
|
public void onCodeAutoRetrievalTimeOut(String str) {
|
||
|
zza.i("Sms auto retrieval timed-out.", new Object[0]);
|
||
|
}
|
||
|
|
||
|
public void onCodeSent(String str, ForceResendingToken forceResendingToken) {
|
||
|
}
|
||
|
|
||
|
public abstract void onVerificationCompleted(PhoneAuthCredential phoneAuthCredential);
|
||
|
|
||
|
public abstract void onVerificationFailed(FirebaseException firebaseException);
|
||
|
}
|
||
|
}
|