Search Gradle plugins

Version 1.2

Created 08 January 2020.

Setup your Android test device for UI testing.

Using the plugins DSL:

plugins {
  id("de.welt.apps.testdevicemanager") version "1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("de.welt.apps:testdevicemanager:1.2")
  }
}

apply(plugin = "de.welt.apps.testdevicemanager")

Using the plugins DSL:

plugins {
  id "de.welt.apps.testdevicemanager" version "1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "de.welt.apps:testdevicemanager:1.2"
  }
}

apply plugin: "de.welt.apps.testdevicemanager"

Learn how to apply plugins to subprojects