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,122 @@
package com.unity3d.ads.network.model;
import java.util.Map;
import kotlin.collections.MapsKt__MapsKt;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes4.dex */
public final class HttpResponse {
private final Object body;
private final Map<String, Object> headers;
private final int statusCode;
private final String urlString;
/* JADX WARN: 'this' call moved to the top of the method (can break code semantics) */
public HttpResponse(Object body) {
this(body, 0, null, null, 14, null);
Intrinsics.checkNotNullParameter(body, "body");
}
/* JADX WARN: 'this' call moved to the top of the method (can break code semantics) */
public HttpResponse(Object body, int i) {
this(body, i, null, null, 12, null);
Intrinsics.checkNotNullParameter(body, "body");
}
/* JADX WARN: 'this' call moved to the top of the method (can break code semantics) */
public HttpResponse(Object body, int i, Map<String, ? extends Object> headers) {
this(body, i, headers, null, 8, null);
Intrinsics.checkNotNullParameter(body, "body");
Intrinsics.checkNotNullParameter(headers, "headers");
}
/* JADX WARN: Multi-variable type inference failed */
public static /* synthetic */ HttpResponse copy$default(HttpResponse httpResponse, Object obj, int i, Map map, String str, int i2, Object obj2) {
if ((i2 & 1) != 0) {
obj = httpResponse.body;
}
if ((i2 & 2) != 0) {
i = httpResponse.statusCode;
}
if ((i2 & 4) != 0) {
map = httpResponse.headers;
}
if ((i2 & 8) != 0) {
str = httpResponse.urlString;
}
return httpResponse.copy(obj, i, map, str);
}
public final Object component1() {
return this.body;
}
public final int component2() {
return this.statusCode;
}
public final Map<String, Object> component3() {
return this.headers;
}
public final String component4() {
return this.urlString;
}
public final HttpResponse copy(Object body, int i, Map<String, ? extends Object> headers, String urlString) {
Intrinsics.checkNotNullParameter(body, "body");
Intrinsics.checkNotNullParameter(headers, "headers");
Intrinsics.checkNotNullParameter(urlString, "urlString");
return new HttpResponse(body, i, headers, urlString);
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof HttpResponse)) {
return false;
}
HttpResponse httpResponse = (HttpResponse) obj;
return Intrinsics.areEqual(this.body, httpResponse.body) && this.statusCode == httpResponse.statusCode && Intrinsics.areEqual(this.headers, httpResponse.headers) && Intrinsics.areEqual(this.urlString, httpResponse.urlString);
}
public final Object getBody() {
return this.body;
}
public final Map<String, Object> getHeaders() {
return this.headers;
}
public final int getStatusCode() {
return this.statusCode;
}
public final String getUrlString() {
return this.urlString;
}
public int hashCode() {
return (((((this.body.hashCode() * 31) + Integer.hashCode(this.statusCode)) * 31) + this.headers.hashCode()) * 31) + this.urlString.hashCode();
}
public String toString() {
return "HttpResponse(body=" + this.body + ", statusCode=" + this.statusCode + ", headers=" + this.headers + ", urlString=" + this.urlString + ')';
}
public HttpResponse(Object body, int i, Map<String, ? extends Object> headers, String urlString) {
Intrinsics.checkNotNullParameter(body, "body");
Intrinsics.checkNotNullParameter(headers, "headers");
Intrinsics.checkNotNullParameter(urlString, "urlString");
this.body = body;
this.statusCode = i;
this.headers = headers;
this.urlString = urlString;
}
public /* synthetic */ HttpResponse(Object obj, int i, Map map, String str, int i2, DefaultConstructorMarker defaultConstructorMarker) {
this(obj, (i2 & 2) != 0 ? 200 : i, (i2 & 4) != 0 ? MapsKt__MapsKt.emptyMap() : map, (i2 & 8) != 0 ? "" : str);
}
}