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,45 @@
package androidx.privacysandbox.ads.adservices.measurement;
import android.net.Uri;
import androidx.annotation.RequiresApi;
import kotlin.jvm.internal.Intrinsics;
@RequiresApi(33)
/* loaded from: classes.dex */
public final class WebTriggerParams {
private final boolean debugKeyAllowed;
private final Uri registrationUri;
public final boolean getDebugKeyAllowed() {
return this.debugKeyAllowed;
}
public final Uri getRegistrationUri() {
return this.registrationUri;
}
public WebTriggerParams(Uri registrationUri, boolean z) {
Intrinsics.checkNotNullParameter(registrationUri, "registrationUri");
this.registrationUri = registrationUri;
this.debugKeyAllowed = z;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof WebTriggerParams)) {
return false;
}
WebTriggerParams webTriggerParams = (WebTriggerParams) obj;
return Intrinsics.areEqual(this.registrationUri, webTriggerParams.registrationUri) && this.debugKeyAllowed == webTriggerParams.debugKeyAllowed;
}
public int hashCode() {
return (this.registrationUri.hashCode() * 31) + Boolean.hashCode(this.debugKeyAllowed);
}
public String toString() {
return "WebTriggerParams { RegistrationUri=" + this.registrationUri + ", DebugKeyAllowed=" + this.debugKeyAllowed + " }";
}
}