Files
rr3-apk/decompiled-community/sources/com/google/android/gms/identitycredentials/internal/IdentityCredentialBaseCallbacks.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- Added realracing3-community.apk (71.57 MB)
- Removed 32-bit support (armeabi-v7a)
- Only includes arm64-v8a libraries
- Decompiled source code included
- Added README-community.md with analysis
2026-02-18 15:48:36 -08:00

45 lines
2.4 KiB
Java

package com.google.android.gms.identitycredentials.internal;
import androidx.annotation.NonNull;
import com.google.android.gms.common.api.Status;
import com.google.android.gms.identitycredentials.ClearRegistryResponse;
import com.google.android.gms.identitycredentials.PendingGetCredentialHandle;
import com.google.android.gms.identitycredentials.PendingImportCredentialsHandle;
import com.google.android.gms.identitycredentials.RegisterExportResponse;
import com.google.android.gms.identitycredentials.RegistrationResponse;
import com.google.android.gms.identitycredentials.internal.IIdentityCredentialCallbacks;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes2.dex */
public abstract class IdentityCredentialBaseCallbacks extends IIdentityCredentialCallbacks.Stub {
@Override // com.google.android.gms.identitycredentials.internal.IIdentityCredentialCallbacks
public void onClearRegistry(@NonNull Status status, ClearRegistryResponse clearRegistryResponse) {
Intrinsics.checkNotNullParameter(status, "status");
throw new UnsupportedOperationException();
}
@Override // com.google.android.gms.identitycredentials.internal.IIdentityCredentialCallbacks
public void onGetCredential(@NonNull Status status, PendingGetCredentialHandle pendingGetCredentialHandle) {
Intrinsics.checkNotNullParameter(status, "status");
throw new UnsupportedOperationException();
}
@Override // com.google.android.gms.identitycredentials.internal.IIdentityCredentialCallbacks
public void onImportCredentials(@NonNull Status status, PendingImportCredentialsHandle pendingImportCredentialsHandle) {
Intrinsics.checkNotNullParameter(status, "status");
throw new UnsupportedOperationException();
}
@Override // com.google.android.gms.identitycredentials.internal.IIdentityCredentialCallbacks
public void onRegisterCredentials(@NonNull Status status, RegistrationResponse registrationResponse) {
Intrinsics.checkNotNullParameter(status, "status");
throw new UnsupportedOperationException();
}
@Override // com.google.android.gms.identitycredentials.internal.IIdentityCredentialCallbacks
public void onRegisterExport(@NonNull Status status, RegisterExportResponse registerExportResponse) {
Intrinsics.checkNotNullParameter(status, "status");
throw new UnsupportedOperationException();
}
}