Search Gradle plugins

Version 2.1.0-RC01

Created 10 May 2021.

A Gradle plugin for counting methods in an .apk

Using the plugins DSL:

plugins {
  id("com.getkeepsafe.dexcount") version "2.1.0-RC01"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.getkeepsafe.dexcount:dexcount-gradle-plugin:2.1.0-RC01")
  }
}

apply(plugin = "com.getkeepsafe.dexcount")

Using the plugins DSL:

plugins {
  id "com.getkeepsafe.dexcount" version "2.1.0-RC01"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.getkeepsafe.dexcount:dexcount-gradle-plugin:2.1.0-RC01"
  }
}

apply plugin: "com.getkeepsafe.dexcount"

Learn how to apply plugins to subprojects