- 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
101 lines
2.9 KiB
Java
101 lines
2.9 KiB
Java
package androidx.work.impl.utils;
|
|
|
|
import android.net.NetworkRequest;
|
|
import androidx.annotation.RequiresApi;
|
|
import androidx.work.Logger;
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class NetworkRequestCompat {
|
|
public static final Companion Companion = new Companion(null);
|
|
private static final String TAG;
|
|
private final Object wrapped;
|
|
|
|
/* JADX WARN: Illegal instructions before constructor call */
|
|
/*
|
|
Code decompiled incorrectly, please refer to instructions dump.
|
|
To view partially-correct add '--show-bad-code' argument
|
|
*/
|
|
public NetworkRequestCompat() {
|
|
/*
|
|
r2 = this;
|
|
r0 = 0
|
|
r1 = 1
|
|
r2.<init>(r0, r1, r0)
|
|
return
|
|
*/
|
|
throw new UnsupportedOperationException("Method not decompiled: androidx.work.impl.utils.NetworkRequestCompat.<init>():void");
|
|
}
|
|
|
|
public static /* synthetic */ NetworkRequestCompat copy$default(NetworkRequestCompat networkRequestCompat, Object obj, int i, Object obj2) {
|
|
if ((i & 1) != 0) {
|
|
obj = networkRequestCompat.wrapped;
|
|
}
|
|
return networkRequestCompat.copy(obj);
|
|
}
|
|
|
|
public final Object component1() {
|
|
return this.wrapped;
|
|
}
|
|
|
|
public final NetworkRequestCompat copy(Object obj) {
|
|
return new NetworkRequestCompat(obj);
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
return (obj instanceof NetworkRequestCompat) && Intrinsics.areEqual(this.wrapped, ((NetworkRequestCompat) obj).wrapped);
|
|
}
|
|
|
|
public final Object getWrapped() {
|
|
return this.wrapped;
|
|
}
|
|
|
|
public int hashCode() {
|
|
Object obj = this.wrapped;
|
|
if (obj == null) {
|
|
return 0;
|
|
}
|
|
return obj.hashCode();
|
|
}
|
|
|
|
public String toString() {
|
|
return "NetworkRequestCompat(wrapped=" + this.wrapped + ')';
|
|
}
|
|
|
|
public NetworkRequestCompat(Object obj) {
|
|
this.wrapped = obj;
|
|
}
|
|
|
|
public /* synthetic */ NetworkRequestCompat(Object obj, int i, DefaultConstructorMarker defaultConstructorMarker) {
|
|
this((i & 1) != 0 ? null : obj);
|
|
}
|
|
|
|
public static final class Companion {
|
|
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
|
|
private Companion() {
|
|
}
|
|
|
|
public final String getTAG() {
|
|
return NetworkRequestCompat.TAG;
|
|
}
|
|
}
|
|
|
|
static {
|
|
String tagWithPrefix = Logger.tagWithPrefix("NetworkRequestCompat");
|
|
Intrinsics.checkNotNullExpressionValue(tagWithPrefix, "tagWithPrefix(\"NetworkRequestCompat\")");
|
|
TAG = tagWithPrefix;
|
|
}
|
|
|
|
@RequiresApi(21)
|
|
public final NetworkRequest getNetworkRequest() {
|
|
return (NetworkRequest) this.wrapped;
|
|
}
|
|
}
|