Search Gradle plugins

com.lib.logthisannotations

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

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.lib.logthisannotations") version "0.4.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.lib.logthisplugin:logthis-plugin:0.4.2")
      }
    }
    
    apply(plugin = "com.lib.logthisannotations")
  • Applying plugins to all subprojects .