Multi-platform word search puzzle game.
web/: React PWA implementation (Vite + Vanilla CSS).android/: Native Android implementation (Kotlin Multi-module).:core: Shared gameplay logic and engine.:app-xml: Classic Android Views UI.:app-compose: Modern Jetpack Compose UI.
- Navigate to
web/ - Run
npm install - Run
npm run dev
- Open the
android/directory in Android Studio. - The IDE will automatically sync Gradle and download dependencies.
- Choose either the
app-xmlorapp-composerun configuration to deploy to an emulator or device.
- Shared Engine: Both Android apps use the same
:corelogic for grid generation and word validation. - Compose Exclusives: The Compose version includes smooth animations and a more responsive grid.
- XML Stability: The XML version provides a rock-solid classic implementation using RecyclerView.