A simple Android "Tic Tac Toe" game with the option to play against another player or against the computer.
TicTacToe is a mobile application developed for the Android platform. It allows users to play the classic Tic Tac Toe game with friends or against the computer. The app features a minimalist design, a user-friendly interface, and basic game settings.
- Java
- Android SDK
- XML
- Gradle
- Adobe XD (UI Design)
- Two-player mode (Player vs Player)
- Play against the computer (Player vs Computer)
- Simple and intuitive user interface
- Option to reset the game
- Basic app settings
TicTacToe/
├── Design/ # Design files and images
├── app/ # Android application (source code)
├── build.gradle # Gradle configuration
├── gradle/ # Gradle settings
└── settings.gradle # Gradle settings file
Clone the repository:
git clone https://github.com/GingerCRO/TicTacToe.gitOpen the project in Android Studio.
Build the application using the Gradle tool.
Run the application on an emulator or a physical device.
In Android Studio, click Run (green arrow) to start the application.
The application uses Android JUnit tests. Run the test suite in Android Studio using:
Run > Run 'All Tests'
If you would like to contribute:
- Fork the project
- Create a new branch:
git checkout -b feature/feature-name - Commit your changes:
git commit -m 'Add new feature' - Push to GitHub:
git push origin feature/feature-name - Open a Pull Request
This project is licensed under the MIT License. For more details, see the LICENSE file.
Inspired by the classic Tic Tac Toe game.