Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 756 Bytes

File metadata and controls

28 lines (20 loc) · 756 Bytes

Contributing to Shellom

Welcome to Shellom! This page will help you set up and contribute.

Building

The project uses Mise and Gradle for building.

Setup

  1. Install Mise: Follow the instructions on the Mise website.
  2. Install Tools: Run mise install.
    • Smart SDK Management: Mise will check for a system-installed Android SDK first. If found, it uses it. If not, it will automatically install a managed version for you.
  3. Build: Run gradle assembleDebug to build the project.

Lint & Format

Run Lint

To check for linting issues, run:

gradle ktlintCheck

Run Format

To automatically fix most linting issues, run:

gradle ktlintFormat