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,38 @@
package androidx.core.app;
import android.content.res.Configuration;
import androidx.annotation.RequiresApi;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes.dex */
public final class MultiWindowModeChangedInfo {
private final boolean isInMultiWindowMode;
@RequiresApi(26)
private Configuration newConfiguration;
public final boolean isInMultiWindowMode() {
return this.isInMultiWindowMode;
}
public MultiWindowModeChangedInfo(boolean z) {
this.isInMultiWindowMode = z;
}
/* JADX WARN: 'this' call moved to the top of the method (can break code semantics) */
@RequiresApi(26)
public MultiWindowModeChangedInfo(boolean z, Configuration newConfig) {
this(z);
Intrinsics.checkNotNullParameter(newConfig, "newConfig");
this.newConfiguration = newConfig;
}
@RequiresApi(26)
public final Configuration getNewConfig() {
Configuration configuration = this.newConfiguration;
if (configuration != null) {
return configuration;
}
throw new IllegalStateException("MultiWindowModeChangedInfo must be constructed with the constructor that takes a Configuration to access the newConfig. Are you running on an API 26 or higher device that makes this information available?".toString());
}
}