Search Gradle plugins

Version 1.3 (latest)

Created 26 February 2020.

Setup your Android test device for UI testing.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects