Skip to content

GianlucaVeschi/android-coding-challenge-template

Repository files navigation

Android Coding Challenge Template

Ready to kick off your next Android project? This template will get you started as quick as possible with a lot of interesting features, so you can focus directly on your application.

Features 🎨

  • 100% Kotlin-only template. ✔️
  • Jetpack Compose setup ready to use. ✔️
  • Dagger Hilt, Retrofit, OkHttp, Room ✔️
  • Sample Espresso, Instrumentation & JUnit tests. ✔️
  • 100% Gradle Kotlin DSL setup. ✔️
  • CI Setup with GitHub Actions. ✔️
  • Dependency versions managed via buildSrc. ✔️
  • Kotlin Static Analysis via detekt and ktlint. ✔️
  • Issues Template (bug report + feature request). ✔️
  • Pull Request Template. ✔️

Gradle Setup 🐘

This template is using Gradle Kotlin DSL as well as the Plugin DSL to setup the build.

Dependencies are centralized inside the Gradle Version Catalog in the libs.versions.toml file in the gradle folder.

Static Analysis 🔍

This template is using detekt to analyze the source code, with the configuration that is stored in the detekt.yml file (the file has been generated with the detektGenerateConfig task). It also uses the detekt-formatting plugin which includes the ktlint rules (see https://detekt.dev/docs/rules/formatting/).

CI ⚙️

This template is using GitHub Actions as CI. You don't need to setup any external service and you should have a running CI once you start using this template.

There are currently the following workflows available:

Project Structure

  • app: The source for the final Android application.

The following additional top-level directories configure & support building the app & projects:

Finally, the following hidden top-level directories provide functionality for specific development systems:

Contributing 🤝

Feel free to open a issue or submit a pull request for any bugs/improvements.