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 3.0.0-SNAPSHOT
3.0.0-SNAPSHOT
Created 30 July 2021.
A Gradle plugin for counting methods in an .apk
Using the plugins DSL:
plugins {
id("com.getkeepsafe.dexcount") version "3.0.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.getkeepsafe.dexcount:dexcount-gradle-plugin:3.0.0-SNAPSHOT")
}
}
apply(plugin = "com.getkeepsafe.dexcount")
Using the plugins DSL:
plugins {
id "com.getkeepsafe.dexcount" version "3.0.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.getkeepsafe.dexcount:dexcount-gradle-plugin:3.0.0-SNAPSHOT"
}
}
apply plugin: "com.getkeepsafe.dexcount"