搜索Gradle插件

com.lib.logthisannotations

所有者: Luis Pereira

通过简单地使用注解@LogThis在Android上记录任何方法

https://github.com/luispereira/LogThis

源代码: https://github.com/luispereira/LogThis.git

版本 0.4.2 (最新版)

0.4.2

创建于 2016年1月22日。

通过简单地使用注解@LogThis在Android上记录任何方法

使用插件DSL

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

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.lib.logthisplugin:logthis-plugin:0.4.2")
  }
}

apply(plugin = "com.lib.logthisannotations")

使用插件DSL

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

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.lib.logthisplugin:logthis-plugin:0.4.2"
  }
}

apply plugin: "com.lib.logthisannotations"

了解如何将插件应用于子项目