ru.erdenian.shrinkometer
Owner:
Ilya Solovyov
Calculates per class size difference in dex files with and without code shrinking
https://github.com/Erdenian/shrinkometer
Sources: https://github.com/Erdenian/shrinkometer.git
Version 0.2.0
Created 20 August 2020.
Calculates per class size difference in dex files with and without code shrinking
Add this plugin to your build using the plugins DSL:
plugins {
id("ru.erdenian.shrinkometer") version "0.2.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("ru.erdenian.shrinkometer:ru.erdenian.shrinkometer.gradle.plugin:0.2.0") }
It can then be applied in the precompiled script plugin:plugins { id("ru.erdenian.shrinkometer") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ru.erdenian.shrinkometer:ru.erdenian.shrinkometer.gradle.plugin:0.2.0") } } apply(plugin = "ru.erdenian.shrinkometer")
- Applying plugins to all subprojects .