Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
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;
}
}