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 com.google.zxing.qrcode.encoder;
import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
import com.google.zxing.qrcode.decoder.Mode;
import com.google.zxing.qrcode.decoder.Version;
/* loaded from: classes3.dex */
public final class QRCode {
public ErrorCorrectionLevel ecLevel;
public int maskPattern = -1;
public ByteMatrix matrix;
public Mode mode;
public Version version;
public static boolean isValidMaskPattern(int i) {
return i >= 0 && i < 8;
}
public ByteMatrix getMatrix() {
return this.matrix;
}
public void setECLevel(ErrorCorrectionLevel errorCorrectionLevel) {
this.ecLevel = errorCorrectionLevel;
}
public void setMaskPattern(int i) {
this.maskPattern = i;
}
public void setMatrix(ByteMatrix byteMatrix) {
this.matrix = byteMatrix;
}
public void setMode(Mode mode) {
this.mode = mode;
}
public void setVersion(Version version) {
this.version = version;
}
public String toString() {
StringBuilder sb = new StringBuilder(200);
sb.append("<<\n");
sb.append(" mode: ");
sb.append(this.mode);
sb.append("\n ecLevel: ");
sb.append(this.ecLevel);
sb.append("\n version: ");
sb.append(this.version);
sb.append("\n maskPattern: ");
sb.append(this.maskPattern);
if (this.matrix == null) {
sb.append("\n matrix: null\n");
} else {
sb.append("\n matrix:\n");
sb.append(this.matrix);
}
sb.append(">>\n");
return sb.toString();
}
}