Thanks for your interest in contributing! This document explains how to report issues, propose changes, and submit pull requests.
This project follows the Contributor Covenant Code of Conduct. By participating, you are expected to uphold it.
Before opening an issue, please:
- Search existing issues to avoid duplicates.
- Confirm the bug reproduces on the
mainbranch with the latest Android Studio. - Include:
- Android version and device model (or emulator)
- Android Studio and Gradle versions
- Steps to reproduce
- Expected vs actual behavior
- Relevant Logcat output or stack traces
Do not open public issues for security vulnerabilities. See SECURITY.md for the disclosure process.
For non-trivial changes, please open an issue first to discuss the approach before investing implementation time.
- Fork the repository and create a feature branch from
main. - Make your changes with clear, focused commits.
- Add or update tests for any behavioral changes.
- Run the test suite locally:
./gradlew test - Build the app to confirm no compilation errors:
./gradlew build
- Push your branch and open a pull request against
main. - In the PR description, explain what changed and why.
Follow standard Kotlin style conventions. Keep 100% Kotlin and 100% Jetpack Compose.
Architecture: Simple MVVM Layered Architecture with Hilt for dependency injection and Retrofit2 for networking. Follow existing patterns for new screens and view models.
- Tests use the standard Android test frameworks (JUnit, etc.).
- Place new tests alongside existing ones mirroring the source structure.
See README.md for full setup instructions.
By contributing, you agree that your contributions will be licensed under the MIT License.