Search Gradle plugins

com.nimbledroid.profiler

A plugin that interfaces with NimbleDroid to automate app profiling.

https://nimble.app

Sources: https://github.com/Tubebaum/gradle-profiler

Version 1.2.0

Created 24 July 2019.

A plugin that interfaces with NimbleDroid to automate app profiling.

Using the plugins DSL:

plugins {
  id("com.nimbledroid.profiler") version "1.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.nimbledroid:gradle-profiler:1.2.0")
  }
}

apply(plugin = "com.nimbledroid.profiler")

Using the plugins DSL:

plugins {
  id "com.nimbledroid.profiler" version "1.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.nimbledroid:gradle-profiler:1.2.0"
  }
}

apply plugin: "com.nimbledroid.profiler"

Learn how to apply plugins to subprojects