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,63 @@
package androidx.webkit.internal;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import java.util.Objects;
import org.chromium.support_lib_boundary.WebMessagePayloadBoundaryInterface;
/* loaded from: classes.dex */
public class WebMessagePayloadAdapter implements WebMessagePayloadBoundaryInterface {
@Nullable
private final byte[] mArrayBuffer;
@Nullable
private final String mString;
private final int mType;
@Override // org.chromium.support_lib_boundary.FeatureFlagHolderBoundaryInterface
@NonNull
public String[] getSupportedFeatures() {
return new String[0];
}
@Override // org.chromium.support_lib_boundary.WebMessagePayloadBoundaryInterface
public int getType() {
return this.mType;
}
public WebMessagePayloadAdapter(@Nullable String str) {
this.mType = 0;
this.mString = str;
this.mArrayBuffer = null;
}
public WebMessagePayloadAdapter(@NonNull byte[] bArr) {
this.mType = 1;
this.mString = null;
this.mArrayBuffer = bArr;
}
@Override // org.chromium.support_lib_boundary.WebMessagePayloadBoundaryInterface
@Nullable
public String getAsString() {
checkType(0);
return this.mString;
}
@Override // org.chromium.support_lib_boundary.WebMessagePayloadBoundaryInterface
@NonNull
public byte[] getAsArrayBuffer() {
checkType(1);
byte[] bArr = this.mArrayBuffer;
Objects.requireNonNull(bArr);
return bArr;
}
private void checkType(int i) {
if (this.mType == i) {
return;
}
throw new IllegalStateException("Expected " + i + ", but type is " + this.mType);
}
}