de.welt.apps.testdevicemanager
Owner: Sebastian Krawczyk
Setup your Android test device for UI testing.
https://github.com/spring-media/apps-android-testdevicemanager
Sources: https://github.com/spring-media/apps-android-testdevicemanager
Version 1.3 (latest)
Created 26 February 2020.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Setup your Android test device for UI testing.
Add this plugin to your build using the plugins DSL:
plugins {
id("de.welt.apps.testdevicemanager") version "1.3"
}
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("de.welt.apps.testdevicemanager:de.welt.apps.testdevicemanager.gradle.plugin:1.3") }
It can then be applied in the precompiled script plugin:plugins { id("de.welt.apps.testdevicemanager") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.welt.apps.testdevicemanager:de.welt.apps.testdevicemanager.gradle.plugin:1.3") } } apply(plugin = "de.welt.apps.testdevicemanager")
- Applying plugins to all subprojects .