Add Discord community version (64-bit only)

- 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
This commit is contained in:
2026-02-18 15:48:36 -08:00
parent c19eb3d7ff
commit c080f0d97f
26930 changed files with 2529574 additions and 0 deletions

View File

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