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,39 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:id="@+id/topPanel"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:gravity="start|center_vertical"
android:orientation="horizontal"
android:id="@+id/title_template"
android:paddingLeft="?attr/dialogPreferredPadding"
android:paddingTop="@dimen/abc_dialog_padding_top_material"
android:paddingRight="?attr/dialogPreferredPadding"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@android:id/icon"
android:layout_width="32dp"
android:layout_height="32dp"
android:layout_marginRight="8dp"
android:src="@null"
android:scaleType="fitCenter"
android:layout_marginEnd="8dp"/>
<androidx.appcompat.widget.DialogTitle
android:ellipsize="end"
android:layout_gravity="start"
android:id="@+id/alertTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:textAlignment="viewStart"
style="?android:attr/windowTitleStyle"/>
</LinearLayout>
<android.widget.Space
android:id="@+id/titleDividerNoCustom"
android:visibility="gone"
android:layout_width="match_parent"
android:layout_height="@dimen/abc_dialog_title_divider_material"/>
</LinearLayout>