com.lib.logthisannotations
Owner: Luis Pereira
Log any method on android by simply using annotation @LogThis
https://github.com/luispereira/LogThis
Sources: https://github.com/luispereira/LogThis.git
Version 0.4.2 (latest)
0.4.2
Created 22 January 2016.
Log any method on android by simply using annotation @LogThis
Using the plugins DSL:
plugins {
id("com.lib.logthisannotations") version "0.4.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.lib.logthisplugin:logthis-plugin:0.4.2")
}
}
apply(plugin = "com.lib.logthisannotations")
Using the plugins DSL:
plugins {
id "com.lib.logthisannotations" version "0.4.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.lib.logthisplugin:logthis-plugin:0.4.2"
}
}
apply plugin: "com.lib.logthisannotations"