Search Gradle plugins

dev.teogor.ceres.android.lint

Enforce code quality and best practices for Android projects using Ceres conventions.

https://source.teogor.dev/ceres

Sources: https://github.com/teogor/ceres

Version 1.0.0-alpha05 (latest)

Created 15 April 2024.

Enforce code quality and best practices for Android projects using Ceres conventions.

Using the plugins DSL:

plugins {
  id("dev.teogor.ceres.android.lint") version "1.0.0-alpha05"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("dev.teogor.ceres.plugin:library-convention:1.0.0-alpha05")
  }
}

apply(plugin = "dev.teogor.ceres.android.lint")

Using the plugins DSL:

plugins {
  id "dev.teogor.ceres.android.lint" version "1.0.0-alpha05"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "dev.teogor.ceres.plugin:library-convention:1.0.0-alpha05"
  }
}

apply plugin: "dev.teogor.ceres.android.lint"

Learn how to apply plugins to subprojects