Skip to content

Instantly share code, notes, and snippets.

View Zer0bee's full-sized avatar

Manish Sharma Zer0bee

View GitHub Profile
@Zer0bee
Zer0bee / gradle-dependencySize
Created May 7, 2020 17:05
To log size of all the dependencies in gradle
tasks.register("depsize") {
description = 'Prints dependencies for "default" configuration'
doLast() {
listConfigurationDependencies(configurations.default)
}
}
tasks.register("depsize-all-configurations") {
description = 'Prints dependencies for all available configurations'
doLast() {
@Zer0bee
Zer0bee / introrx.md
Created April 20, 2017 19:32 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing