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,59 @@
package com.google.android.gms.common.sqlite;
import android.database.AbstractWindowedCursor;
import android.database.CrossProcessCursor;
import android.database.Cursor;
import android.database.CursorWindow;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import com.google.android.gms.common.annotation.KeepForSdk;
import com.google.errorprone.annotations.ResultIgnorabilityUnspecified;
@KeepForSdk
/* loaded from: classes2.dex */
public class CursorWrapper extends android.database.CursorWrapper implements CrossProcessCursor {
private AbstractWindowedCursor zza;
@KeepForSdk
public CursorWrapper(@NonNull Cursor cursor) {
super(cursor);
for (int i = 0; i < 10 && (cursor instanceof android.database.CursorWrapper); i++) {
cursor = ((android.database.CursorWrapper) cursor).getWrappedCursor();
}
if (!(cursor instanceof AbstractWindowedCursor)) {
throw new IllegalArgumentException("Unknown type: ".concat(cursor.getClass().getName()));
}
this.zza = (AbstractWindowedCursor) cursor;
}
@Override // android.database.CrossProcessCursor
@KeepForSdk
public void fillWindow(int i, @NonNull CursorWindow cursorWindow) {
this.zza.fillWindow(i, cursorWindow);
}
@Override // android.database.CrossProcessCursor
@Nullable
@ResultIgnorabilityUnspecified
@KeepForSdk
public CursorWindow getWindow() {
return this.zza.getWindow();
}
@Override // android.database.CursorWrapper
@NonNull
public final /* synthetic */ Cursor getWrappedCursor() {
return this.zza;
}
@Override // android.database.CrossProcessCursor
@ResultIgnorabilityUnspecified
public final boolean onMove(int i, int i2) {
return this.zza.onMove(i, i2);
}
@KeepForSdk
public void setWindow(@Nullable CursorWindow cursorWindow) {
this.zza.setWindow(cursorWindow);
}
}