Version 1.0.7 (latest)
1.0.7
Created 23 October 2017.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Gradle plugin for averaging dex method count excluded main dex file
Using the plugins DSL:
plugins {
id("com.cantalou.gradle.dexDividerPlugin") version "1.0.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.cantalou.gradle:dexDividerPlugin:1.0.7")
}
}
apply(plugin = "com.cantalou.gradle.dexDividerPlugin")
Using the plugins DSL:
plugins {
id "com.cantalou.gradle.dexDividerPlugin" version "1.0.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.cantalou.gradle:dexDividerPlugin:1.0.7"
}
}
apply plugin: "com.cantalou.gradle.dexDividerPlugin"