A Solitaire Android Game heavily inspired by Brian Strauch's Solitaire-TUI.
Klondike solitaire rendered in a terminal/ASCII style, built with Kotlin and a custom Canvas-drawn GameView.
- Classic Klondike solitaire rules
- Terminal-style ASCII card rendering
- Light and dark modes
- Game state is preserved across app switches, backgrounding, and process death
- Resume-in-progress game or start a new one from the main menu
This is a standard Gradle-based Android project.
./gradlew assembleDebugThe debug APK will be output to app/build/outputs/apk/debug/.
Open the project folder in Android Studio to build and run directly on a device or emulator (minimum SDK 21).
Prebuilt APKs are published under Releases — grab the latest one there rather than building from source if you just want to install the game.
This project is heavily inspired by brianstrauch/solitaire-tui (licensed under Apache License 2.0), reimagined as a native Android app. All credit for the original game design and terminal aesthetic goes to Brian Strauch.