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