Contributing to NativeAppTemplate-Free-Android

May 8, 2026 · View on GitHub

Thanks for your interest in contributing! This document explains how to report issues, propose changes, and submit pull requests.

Code of Conduct

This project follows the Contributor Covenant Code of Conduct. By participating, you are expected to uphold it.

Reporting Bugs

Before opening an issue, please:

  1. Search existing issues to avoid duplicates.
  2. Confirm the bug reproduces on the main branch with the latest Android Studio.
  3. 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

Reporting Security Vulnerabilities

Do not open public issues for security vulnerabilities. See SECURITY.md for the disclosure process.

Proposing Changes

For non-trivial changes, please open an issue first to discuss the approach before investing implementation time.

Pull Requests

  1. Fork the repository and create a feature branch from main.
  2. Make your changes with clear, focused commits.
  3. Add or update tests for any behavioral changes.
  4. Run the test suite locally:
    ./gradlew test
    
  5. Build the app to confirm no compilation errors:
    ./gradlew build
    
  6. Push your branch and open a pull request against main.
  7. In the PR description, explain what changed and why.

Style

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

  • Tests use the standard Android test frameworks (JUnit, etc.).
  • Place new tests alongside existing ones mirroring the source structure.

Rename safety

This substrate is consumed by nativeapptemplate-agent, which mechanically renames Shop, Shopkeeper, and ItemTag (and all their case forms — PascalCase, snake_case, camelCase, flat, UPPER_SNAKE, humanized lower/title/sentence × singular/plural) to user-chosen target words. Some patterns that read fine in this repo break when renamed.

Before merging changes that touch user-facing strings, test descriptors, or comments mentioning domain entities, read the substrate rename-safety contract.

Quick rule of thumb: avoid "a" / "an" directly preceding Shop, Shopkeeper, or ItemTag (or their humanized forms) — write self-contained or article-free phrasings instead.

Failure mode this prevents: a string like "Swipe an item tag to ..." reads correctly here but produces "Swipe an patient to ..." after the rename pipeline substitutes a consonant-starting word like Patient.

Development Setup

See README.md for full setup instructions.

License

By contributing, you agree that your contributions will be licensed under the MIT License.