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.0.7

1.0.7

Created 29 January 2016.

A plugin that interfaces with NimbleDroid to automate app profiling.

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.nimbledroid:gradle-profiler:1.0.7")
      }
    }
    
    apply(plugin = "com.nimbledroid.profiler")
  • Applying plugins to all subprojects .