Search Gradle plugins

Version 1.0.4

Created 16 July 2020.

A Gradle plugin for counting methods in an .apk

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.getkeepsafe.dexcount"

Learn how to apply plugins to subprojects