Search Gradle plugins

Version 0.0.56

0.0.56

Created 07 April 2020.

Companion plugin for InAppDevTools, an Android library for debugging, inspecting and reporting from within your own apps

Add this plugin to your build using the plugins DSL:

plugins {
  id("es.rafaco.inappdevtools") version "0.0.56"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("es.rafaco.inappdevtools:inappdevtools-plugin:0.0.56")
      }
    }
    
    apply(plugin = "es.rafaco.inappdevtools")
  • Applying plugins to all subprojects .