Supercharge your Kotlin Project

This page summarizes the projects mentioned and recommended in the original post on dev.to

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
  • ktlint

    An anti-bikeshedding Kotlin linter with built-in formatter

    apply plugin: "org.jlleitschuh.gradle.ktlint" ktlint { // https://github.com/pinterest/ktlint/releases version = "0.42.1" reporters { reporter "plain" reporter "checkstyle" reporter "html" } outputColorName = "RED" }

  • ktlint-gradle

    A ktlint gradle plugin

    ext { // https://github.com/JLLeitschuh/ktlint-gradle/releases ktlintPluginVersion = "10.2.0" } dependencies { classpath 'com.android.tools.build:gradle:7.0.0' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.32" ## KTLINT DEPENDENCY classpath "org.jlleitschuh.gradle:ktlint-gradle:$ktlintPluginVersion" }

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

  • hands_on_kotlin

    Experiments with Compose and latest architecture patterns in Kotlin

    Finally, we apply this configuration to all our subprojects by adding the below inside our project-level build.gradle

  • detekt

    Static code analysis for Kotlin

    ext { // https://github.com/detekt/detekt/releases detektVersion = "1.17.0" } dependencies { classpath 'com.android.tools.build:gradle:7.0.0' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.32" ## DETEKT DEPENDENCY classpath "io.gitlab.arturbosch.detekt:detekt-gradle- plugin:$detektVersion" }

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts