- 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
44 lines
1.3 KiB
Java
44 lines
1.3 KiB
Java
package androidx.privacysandbox.ads.adservices.adselection;
|
|
|
|
import android.net.Uri;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class AdSelectionOutcome {
|
|
private final long adSelectionId;
|
|
private final Uri renderUri;
|
|
|
|
public final long getAdSelectionId() {
|
|
return this.adSelectionId;
|
|
}
|
|
|
|
public final Uri getRenderUri() {
|
|
return this.renderUri;
|
|
}
|
|
|
|
public AdSelectionOutcome(long j, Uri renderUri) {
|
|
Intrinsics.checkNotNullParameter(renderUri, "renderUri");
|
|
this.adSelectionId = j;
|
|
this.renderUri = renderUri;
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof AdSelectionOutcome)) {
|
|
return false;
|
|
}
|
|
AdSelectionOutcome adSelectionOutcome = (AdSelectionOutcome) obj;
|
|
return this.adSelectionId == adSelectionOutcome.adSelectionId && Intrinsics.areEqual(this.renderUri, adSelectionOutcome.renderUri);
|
|
}
|
|
|
|
public int hashCode() {
|
|
return (Long.hashCode(this.adSelectionId) * 31) + this.renderUri.hashCode();
|
|
}
|
|
|
|
public String toString() {
|
|
return "AdSelectionOutcome: adSelectionId=" + this.adSelectionId + ", renderUri=" + this.renderUri;
|
|
}
|
|
}
|