com.getkeepsafe.dexcount
Owner: Ben Bader
A Gradle plugin for counting methods in an .apk
https://github.com/KeepSafe/dexcount-gradle-plugin/
Sources: http://github.com/KeepSafe/dexcount-gradle-plugin/
Version 4.0.0 (latest)
4.0.0
Created 16 January 2023.
A Gradle plugin for counting methods in an .apk
Using the plugins DSL:
plugins {
id("com.getkeepsafe.dexcount") version "4.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.getkeepsafe.dexcount:dexcount-gradle-plugin:4.0.0")
}
}
apply(plugin = "com.getkeepsafe.dexcount")
Using the plugins DSL:
plugins {
id "com.getkeepsafe.dexcount" version "4.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.getkeepsafe.dexcount:dexcount-gradle-plugin:4.0.0"
}
}
apply plugin: "com.getkeepsafe.dexcount"