- 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
45 lines
2.4 KiB
Java
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();
|
|
}
|
|
}
|