Search Gradle plugins

Version 3.0.1

Created 18 January 2022.

A Gradle plugin for counting methods in an .apk

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.getkeepsafe.dexcount"

Learn how to apply plugins to subprojects