Search Gradle plugins

com.polidea.cockpit

Cockpit is an Android library providing a way to easily define a set of parameters that can be accessed and changed by the developers via built-in compact UI at runtime.

https://github.com/Polidea/Cockpit

Sources: https://github.com/Polidea/Cockpit

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.polidea.cockpit") version "3.1.2"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.polidea.cockpit:com.polidea.cockpit.gradle.plugin:3.1.2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.polidea.cockpit")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.polidea.cockpit:com.polidea.cockpit.gradle.plugin:3.1.2")
      }
    }
    
    apply(plugin = "com.polidea.cockpit")
  • Applying plugins to all subprojects .