com.nimbledroid.profiler
Owner: nimbledroid
A plugin that interfaces with NimbleDroid to automate app profiling.
Sources: https://github.com/Tubebaum/gradle-profiler
Version 1.0.4
1.0.4
Created 05 November 2015.
A plugin that interfaces with NimbleDroid to automate app profiling.
Using the plugins DSL:
plugins {
id("com.nimbledroid.profiler") version "1.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.nimbledroid:gradle-profiler:1.0.4")
}
}
apply(plugin = "com.nimbledroid.profiler")
Using the plugins DSL:
plugins {
id "com.nimbledroid.profiler" version "1.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.nimbledroid:gradle-profiler:1.0.4"
}
}
apply plugin: "com.nimbledroid.profiler"