Search Gradle plugins

Version 3.1.0

Created 25 January 2022.

A Gradle plugin for counting methods in an .apk

Using the plugins DSL:

plugins {
  id("com.getkeepsafe.dexcount") version "3.1.0"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.getkeepsafe.dexcount" version "3.1.0"
}

Using legacy plugin application:

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

apply plugin: "com.getkeepsafe.dexcount"

Learn how to apply plugins to subprojects