com.karthik.prettyprint
Owner: rk
pretty print your activity or fragment bundles.
https://github.com/NULLPointerGuy/pretty-print
Sources: https://github.com/NULLPointerGuy/pretty-print.git
Version 0.2 (latest)
0.2
Created 16 December 2018.
pretty print your activity or fragment bundles.
Using the plugins DSL:
plugins {
id("com.karthik.prettyprint") version "0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.karthik:pretty-plugin:0.2")
}
}
apply(plugin = "com.karthik.prettyprint")
Using the plugins DSL:
plugins {
id "com.karthik.prettyprint" version "0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.karthik:pretty-plugin:0.2"
}
}
apply plugin: "com.karthik.prettyprint"