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

- 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
- 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
The app supports 9 languages:
- ๐บ๐ธ English (default)
- ๐ช๐ธ Spanish (Espaรฑol)
- ๐ต๐น Portuguese (Portuguรชs)
- ๐ฎ๐น Italian (Italiano)
- ๐ซ๐ท French (Franรงais)
- ๐ท๐บ Russian (ะ ัััะบะธะน)
- ๐จ๐ณ Chinese Simplified (็ฎไฝไธญๆ)
- ๐ฐ๐ท Korean (ํ๊ตญ์ด)
- ๐ฏ๐ต Japanese (ๆฅๆฌ่ช)
- 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
- Android Studio Hedgehog (2023.1.1) or later
- Android SDK API 26 (Android 8.0) or higher
- Kotlin 2.2.0
-
Clone the repository:
git clone https://github.com/your-username/ScrabbleTimer.git
-
Open the project in Android Studio
-
Sync the project with Gradle files
-
Run the app on an emulator or physical device
# Debug build
./gradlew assembleDebug
# Release build
./gradlew assembleRelease
# Install on connected device
./gradlew installDebug
- Launch the app: Opens with splash screen displaying "SCRABBLE TIMER"
- Select time: Choose from 1-5 minute options on the main screen
- Start timer: Tap the play button to begin countdown
- Control timer: Use play/pause and reset buttons as needed
- Timer completion: Receive audio and vibration alerts when time expires
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
// 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")
- Compile SDK: 35
- Min SDK: 26 (Android 8.0)
- Target SDK: 35
- Kotlin: 2.2.0
- AGP: 8.11.1
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature
) - Commit your changes (
git commit -m 'Add amazing feature'
) - Push to the branch (
git push origin feature/amazing-feature
) - Open a Pull Request
- 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
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
Javier Fuentes
- GitHub: @javfuentes
- Email: contacto@javierfuentes.dev