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 androidx.credentials.provider;
import android.os.Bundle;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes.dex */
public final class ProviderClearCredentialStateRequest {
public static final Companion Companion = new Companion(null);
private final CallingAppInfo callingAppInfo;
public static final Bundle asBundle(ProviderClearCredentialStateRequest providerClearCredentialStateRequest) {
return Companion.asBundle(providerClearCredentialStateRequest);
}
public static final ProviderClearCredentialStateRequest fromBundle(Bundle bundle) {
return Companion.fromBundle(bundle);
}
public final CallingAppInfo getCallingAppInfo() {
return this.callingAppInfo;
}
public static final class Companion {
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
this();
}
private Companion() {
}
public final Bundle asBundle(ProviderClearCredentialStateRequest request) {
Intrinsics.checkNotNullParameter(request, "request");
Bundle bundle = new Bundle();
CallingAppInfo.Companion.setCallingAppInfo$credentials_release(bundle, request.getCallingAppInfo());
return bundle;
}
public final ProviderClearCredentialStateRequest fromBundle(Bundle bundle) {
Intrinsics.checkNotNullParameter(bundle, "bundle");
CallingAppInfo extractCallingAppInfo$credentials_release = CallingAppInfo.Companion.extractCallingAppInfo$credentials_release(bundle);
if (extractCallingAppInfo$credentials_release == null) {
throw new IllegalArgumentException("Bundle was missing CallingAppInfo.");
}
return new ProviderClearCredentialStateRequest(extractCallingAppInfo$credentials_release);
}
}
public ProviderClearCredentialStateRequest(CallingAppInfo callingAppInfo) {
Intrinsics.checkNotNullParameter(callingAppInfo, "callingAppInfo");
this.callingAppInfo = callingAppInfo;
}
}