com.polidea.cockpit
Owner: Marta Woldanska
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
Version 1.0.0-SNAPSHOT
1.0.0-SNAPSHOT
Created 04 April 2018.
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.
Using the plugins DSL:
plugins {
id("com.polidea.cockpit") version "1.0.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.polidea.cockpit:CockpitPlugin:1.0.0-SNAPSHOT")
}
}
apply(plugin = "com.polidea.cockpit")
Using the plugins DSL:
plugins {
id "com.polidea.cockpit" version "1.0.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.polidea.cockpit:CockpitPlugin:1.0.0-SNAPSHOT"
}
}
apply plugin: "com.polidea.cockpit"