Skip to content

A modern Android timer application designed specifically for Scrabble players to limit turn time and enhance gameplay experience.

License

Notifications You must be signed in to change notification settings

JavFuentes/ScrabbleTimer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

13 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

๐ŸŽฒ Scrabble Timer

Android Kotlin Jetpack Compose

A modern Android timer application designed specifically for Scrabble players to limit turn time and enhance gameplay experience.

๐Ÿ“ฑ Features

ssst

โฑ๏ธ Timer Functionality

  • Multiple time options: 1, 2, 3, 4, or 5 minutes per turn
  • Persistent state: Timer survives screen rotations and app lifecycle changes
  • Audio & vibration alerts: Sound and vibration notifications when time expires
  • Intuitive controls: Play/Pause and Reset buttons with clear visual feedback

๐ŸŽจ Modern UI/UX

  • Material 3 Design: Following Google's latest design guidelines
  • Custom Splash Screen: Branded entry screen with custom Scrabbles font
  • Responsive design: Optimized for different screen sizes and orientations

๐ŸŒ Multi-language Support

The app supports 9 languages:

  • ๐Ÿ‡บ๐Ÿ‡ธ English (default)
  • ๐Ÿ‡ช๐Ÿ‡ธ Spanish (Espaรฑol)
  • ๐Ÿ‡ต๐Ÿ‡น Portuguese (Portuguรชs)
  • ๐Ÿ‡ฎ๐Ÿ‡น Italian (Italiano)
  • ๐Ÿ‡ซ๐Ÿ‡ท French (Franรงais)
  • ๐Ÿ‡ท๐Ÿ‡บ Russian (ะ ัƒััะบะธะน)
  • ๐Ÿ‡จ๐Ÿ‡ณ Chinese Simplified (็ฎ€ไฝ“ไธญๆ–‡)
  • ๐Ÿ‡ฐ๐Ÿ‡ท Korean (ํ•œ๊ตญ์–ด)
  • ๐Ÿ‡ฏ๐Ÿ‡ต Japanese (ๆ—ฅๆœฌ่ชž)

๐Ÿ—๏ธ Architecture

  • MVVM Pattern: Clean separation of concerns with ViewModels
  • Jetpack Compose: Modern declarative UI framework
  • StateFlow: Reactive state management
  • Navigation Compose: Type-safe navigation between screens
  • Material 3: Latest Material Design components

๐Ÿš€ Getting Started

Prerequisites

  • Android Studio Hedgehog (2023.1.1) or later
  • Android SDK API 26 (Android 8.0) or higher
  • Kotlin 2.2.0

Installation

  1. Clone the repository:

    git clone https://github.com/your-username/ScrabbleTimer.git
  2. Open the project in Android Studio

  3. Sync the project with Gradle files

  4. Run the app on an emulator or physical device

Building

# Debug build
./gradlew assembleDebug

# Release build
./gradlew assembleRelease

# Install on connected device
./gradlew installDebug

๐Ÿ“‹ Usage

  1. Launch the app: Opens with splash screen displaying "SCRABBLE TIMER"
  2. Select time: Choose from 1-5 minute options on the main screen
  3. Start timer: Tap the play button to begin countdown
  4. Control timer: Use play/pause and reset buttons as needed
  5. Timer completion: Receive audio and vibration alerts when time expires

๐Ÿ› ๏ธ Technical Details

Project Structure

app/
โ”œโ”€โ”€ src/main/java/dev/javierfuentes/scrabbletimer/
โ”‚   โ”œโ”€โ”€ data/           # Data classes and models
โ”‚   โ”œโ”€โ”€ ui/
โ”‚   โ”‚   โ”œโ”€โ”€ components/ # Reusable UI components
โ”‚   โ”‚   โ”œโ”€โ”€ screens/    # App screens
โ”‚   โ”‚   โ”œโ”€โ”€ theme/      # UI theme and colors
โ”‚   โ”‚   โ”œโ”€โ”€ viewmodel/  # ViewModels for state management
โ”‚   โ”‚   โ””โ”€โ”€ navigation/ # Navigation configuration
โ”‚   โ””โ”€โ”€ utils/          # Utility classes
โ””โ”€โ”€ src/main/res/
    โ”œโ”€โ”€ font/           # Custom fonts
    โ”œโ”€โ”€ values/         # Default strings and resources
    โ”œโ”€โ”€ values-es/      # Spanish translations
    โ”œโ”€โ”€ values-pt/      # Portuguese translations
    โ””โ”€โ”€ ...             # Other language translations

Key Dependencies

// Compose BOM
implementation(platform("androidx.compose:compose-bom:2025.07.00"))

// Core Compose dependencies
implementation("androidx.compose.ui:ui")
implementation("androidx.compose.ui:ui-tooling-preview")
implementation("androidx.compose.material3:material3")

// Navigation
implementation("androidx.navigation:navigation-compose:2.9.2")

// ViewModel
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.8.7")
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7")

Build Configuration

  • Compile SDK: 35
  • Min SDK: 26 (Android 8.0)
  • Target SDK: 35
  • Kotlin: 2.2.0
  • AGP: 8.11.1

๐Ÿค Contributing

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

Development Guidelines

  • Follow Android development best practices
  • Use Jetpack Compose for UI development
  • Implement proper state management with ViewModels
  • Add unit tests for new functionality
  • Ensure all strings are externalized for internationalization

๐Ÿ“„ License

MIT License

Copyright (c) 2023 Javier Fuentes

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

For more information about the author and his projects, visit http://javierfuentes.dev

๐Ÿ‘จโ€๐Ÿ’ป Author

Javier Fuentes


Did you like the project? Give it a โญ!

Cรณmprame un cafรฉ en ko-fi.com

About

A modern Android timer application designed specifically for Scrabble players to limit turn time and enhance gameplay experience.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages