Files
rr3-apk/decompiled-community/sources/com/google/android/gms/identitycredentials/PendingImportCredentialsHandle.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

48 lines
1.8 KiB
Java

package com.google.android.gms.identitycredentials;
import android.app.PendingIntent;
import android.os.Parcel;
import android.os.Parcelable;
import androidx.annotation.NonNull;
import com.google.android.gms.common.internal.ShowFirstParty;
import com.google.android.gms.common.internal.safeparcel.AbstractSafeParcelable;
import com.google.android.gms.common.internal.safeparcel.SafeParcelable;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
@ShowFirstParty
@SafeParcelable.Class(creator = "PendingImportCredentialsHandleCreator")
/* loaded from: classes2.dex */
public final class PendingImportCredentialsHandle extends AbstractSafeParcelable {
@SafeParcelable.Field(getter = "getPendingIntent", id = 1)
private final PendingIntent pendingIntent;
public static final Companion Companion = new Companion(null);
public static final Parcelable.Creator<PendingImportCredentialsHandle> CREATOR = new PendingImportCredentialsHandleCreator();
public static final class Companion {
private Companion() {
}
public /* synthetic */ Companion(@NonNull DefaultConstructorMarker defaultConstructorMarker) {
this();
}
}
@SafeParcelable.Constructor
public PendingImportCredentialsHandle(@NonNull @SafeParcelable.Param(id = 1) PendingIntent pendingIntent) {
Intrinsics.checkNotNullParameter(pendingIntent, "pendingIntent");
this.pendingIntent = pendingIntent;
}
public final PendingIntent getPendingIntent() {
return this.pendingIntent;
}
@Override // android.os.Parcelable
public void writeToParcel(@NonNull Parcel dest, int i) {
Intrinsics.checkNotNullParameter(dest, "dest");
PendingImportCredentialsHandleCreator.writeToParcel(this, dest, i);
}
}