CRITICAL BUILD FIX NEEDED. The debug APK build is failing/hanging on Windows. Here are the specific issues: 1. expo-modules-core:buildCMakeDebug[arm64-v8a] hangs - the CMake native build for arm64-v8a is extremely slow or stuck on Windows. We need to ONLY build x86_64 for the emulator (not arm64-v8a). 2. The gradle.properties already has: reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64 WHAT I NEED YOU TO DO: A) Set reactNativeArchitectures to ONLY x86_64 in gradle.properties (we only need emulator architecture, not ARM) B) Run the build: cd android && ./gradlew app:assembleDebug -x lint -x test --console=plain -PreactNativeArchitectures=x86_64 C) If the build fails, debug and fix whatever Gradle/dependency errors appear D) Once the APK is built, tell me the exact path to app-debug.apk Key env vars for build: export JAVA_HOME="/c/Users/Dana/Documents/Codex/2026-05-29/files-mentioned-by-the-user-handoff/.tools/jdk17/jdk-17.0.19+10" export ANDROID_HOME="/c/Users/Dana/AppData/Local/Android/Sdk" export PATH="$JAVA_HOME/bin:$ANDROID_HOME/platform-tools:$PATH" GO.