- 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
125 lines
4.5 KiB
Java
125 lines
4.5 KiB
Java
package com.google.android.gms.games;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import androidx.annotation.Nullable;
|
|
import com.google.android.gms.common.internal.Objects;
|
|
import com.google.android.gms.common.internal.safeparcel.SafeParcelable;
|
|
|
|
@SafeParcelable.Class(creator = "PlayerRelationshipInfoEntityCreator")
|
|
@SafeParcelable.Reserved({1000})
|
|
/* loaded from: classes2.dex */
|
|
public final class zzu extends com.google.android.gms.games.internal.zzh implements PlayerRelationshipInfo {
|
|
public static final Parcelable.Creator<zzu> CREATOR = new zzv();
|
|
|
|
@SafeParcelable.Field(getter = "getFriendStatus", id = 1)
|
|
private final int zza;
|
|
|
|
@Nullable
|
|
@SafeParcelable.Field(getter = "getNickname", id = 2)
|
|
private final String zzb;
|
|
|
|
@Nullable
|
|
@SafeParcelable.Field(getter = "getInvitationNickname", id = 3)
|
|
private final String zzc;
|
|
|
|
@Nullable
|
|
@SafeParcelable.Field(getter = "getNicknameAbuseReportToken", id = 4)
|
|
private final String zzd;
|
|
|
|
@SafeParcelable.Constructor
|
|
public zzu(@SafeParcelable.Param(id = 1) int i, @Nullable @SafeParcelable.Param(id = 2) String str, @Nullable @SafeParcelable.Param(id = 3) String str2, @Nullable @SafeParcelable.Param(id = 4) String str3) {
|
|
this.zza = i;
|
|
this.zzb = str;
|
|
this.zzc = str2;
|
|
this.zzd = str3;
|
|
}
|
|
|
|
public static int zzd(PlayerRelationshipInfo playerRelationshipInfo) {
|
|
return Objects.hashCode(Integer.valueOf(playerRelationshipInfo.getFriendStatus()), playerRelationshipInfo.zzb(), playerRelationshipInfo.zza(), playerRelationshipInfo.zzc());
|
|
}
|
|
|
|
public static String zze(PlayerRelationshipInfo playerRelationshipInfo) {
|
|
Objects.ToStringHelper stringHelper = Objects.toStringHelper(playerRelationshipInfo);
|
|
stringHelper.add("FriendStatus", Integer.valueOf(playerRelationshipInfo.getFriendStatus()));
|
|
if (playerRelationshipInfo.zzb() != null) {
|
|
stringHelper.add("Nickname", playerRelationshipInfo.zzb());
|
|
}
|
|
if (playerRelationshipInfo.zza() != null) {
|
|
stringHelper.add("InvitationNickname", playerRelationshipInfo.zza());
|
|
}
|
|
if (playerRelationshipInfo.zzc() != null) {
|
|
stringHelper.add("NicknameAbuseReportToken", playerRelationshipInfo.zza());
|
|
}
|
|
return stringHelper.toString();
|
|
}
|
|
|
|
public static boolean zzf(PlayerRelationshipInfo playerRelationshipInfo, Object obj) {
|
|
if (!(obj instanceof PlayerRelationshipInfo)) {
|
|
return false;
|
|
}
|
|
if (obj == playerRelationshipInfo) {
|
|
return true;
|
|
}
|
|
PlayerRelationshipInfo playerRelationshipInfo2 = (PlayerRelationshipInfo) obj;
|
|
return playerRelationshipInfo2.getFriendStatus() == playerRelationshipInfo.getFriendStatus() && Objects.equal(playerRelationshipInfo2.zzb(), playerRelationshipInfo.zzb()) && Objects.equal(playerRelationshipInfo2.zza(), playerRelationshipInfo.zza()) && Objects.equal(playerRelationshipInfo2.zzc(), playerRelationshipInfo.zzc());
|
|
}
|
|
|
|
public final boolean equals(@Nullable Object obj) {
|
|
return zzf(this, obj);
|
|
}
|
|
|
|
@Override // com.google.android.gms.common.data.Freezable
|
|
public final /* bridge */ /* synthetic */ PlayerRelationshipInfo freeze() {
|
|
return this;
|
|
}
|
|
|
|
@Override // com.google.android.gms.games.PlayerRelationshipInfo
|
|
public final int getFriendStatus() {
|
|
return this.zza;
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return zzd(this);
|
|
}
|
|
|
|
@Override // com.google.android.gms.common.data.Freezable
|
|
public final boolean isDataValid() {
|
|
return true;
|
|
}
|
|
|
|
public final String toString() {
|
|
return zze(this);
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
zzv.zza(this, parcel, i);
|
|
}
|
|
|
|
@Override // com.google.android.gms.games.PlayerRelationshipInfo
|
|
@Nullable
|
|
public final String zza() {
|
|
return this.zzc;
|
|
}
|
|
|
|
@Override // com.google.android.gms.games.PlayerRelationshipInfo
|
|
@Nullable
|
|
public final String zzb() {
|
|
return this.zzb;
|
|
}
|
|
|
|
@Override // com.google.android.gms.games.PlayerRelationshipInfo
|
|
@Nullable
|
|
public final String zzc() {
|
|
return this.zzd;
|
|
}
|
|
|
|
public zzu(PlayerRelationshipInfo playerRelationshipInfo) {
|
|
this.zza = playerRelationshipInfo.getFriendStatus();
|
|
this.zzb = playerRelationshipInfo.zzb();
|
|
this.zzc = playerRelationshipInfo.zza();
|
|
this.zzd = playerRelationshipInfo.zzc();
|
|
}
|
|
}
|