2 PR Checklist
M M Arif edited this page 2026-06-18 11:46:38 +02:00

PR Checklist

A quick checklist before you open a pull request.
Please also read the general Contributing guide first.

Testing

  • Tested on an emulator or a real device (at least one required).
  • No new crashes or broken flows introduced.

Code Formatting

  • Run this before committing:
./gradlew :app:spotlessApply

New Files

Every new file includes an @author tag in its header:

/**
 * @author yourname
 */

Commits

  • Branch is up to date with main if main is the target.
  • Commit messages are clear and meaningful.
  • One PR = one logical change (no bundled fixes).

PR Description

  • Linked the related issue (e.g., Closes #123).
  • Added screenshots or screen recordings for UI changes.
  • Brief description of what and why.

⚠️ Missing the @author tag or unformatted code will delay review.