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,53 @@
package com.android.vending.licensing;
import android.os.Binder;
import android.os.IBinder;
import android.os.IInterface;
import android.os.Parcel;
/* loaded from: classes.dex */
public interface ILicensingService extends IInterface {
void checkLicense(long j, String str, ILicenseResultListener iLicenseResultListener);
public static abstract class Stub extends Binder implements ILicensingService {
public static ILicensingService asInterface(IBinder iBinder) {
if (iBinder == null) {
return null;
}
IInterface queryLocalInterface = iBinder.queryLocalInterface("com.android.vending.licensing.ILicensingService");
if (queryLocalInterface != null && (queryLocalInterface instanceof ILicensingService)) {
return (ILicensingService) queryLocalInterface;
}
return new Proxy(iBinder);
}
public static class Proxy implements ILicensingService {
public IBinder mRemote;
@Override // android.os.IInterface
public IBinder asBinder() {
return this.mRemote;
}
public Proxy(IBinder iBinder) {
this.mRemote = iBinder;
}
@Override // com.android.vending.licensing.ILicensingService
public void checkLicense(long j, String str, ILicenseResultListener iLicenseResultListener) {
Parcel obtain = Parcel.obtain();
try {
obtain.writeInterfaceToken("com.android.vending.licensing.ILicensingService");
obtain.writeLong(j);
obtain.writeString(str);
obtain.writeStrongBinder(iLicenseResultListener != null ? iLicenseResultListener.asBinder() : null);
this.mRemote.transact(1, obtain, null, 1);
obtain.recycle();
} catch (Throwable th) {
obtain.recycle();
throw th;
}
}
}
}
}