Search Gradle plugins

Version 0.2.0 (latest)

Created 31 March 2024.

Plugin that adds system trace events to an Android app

Using the plugins DSL:

plugins {
  id("de.awenger.gretel") version "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("de.awenger:plugin:0.2.0")
  }
}

apply(plugin = "de.awenger.gretel")

Using the plugins DSL:

plugins {
  id "de.awenger.gretel" version "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "de.awenger:plugin:0.2.0"
  }
}

apply plugin: "de.awenger.gretel"

Learn how to apply plugins to subprojects