This repository was archived by the owner on Dec 3, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed
Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -24,11 +24,13 @@ The following things can be managed by the plugin:
2424# Integration into the project
2525## Groovy
2626### Plugins DSL
27+ ```
2728plugins {
2829 id "de.welt.apps.testdevicemanager" version "1.1"
2930}
30-
31+ ```
3132### Legacy plugin application
33+ ```
3234buildscript {
3335 repositories {
3436 maven {
@@ -41,14 +43,16 @@ buildscript {
4143}
4244
4345apply plugin: "de.welt.apps.testdevicemanager"
44-
46+ ```
4547## Kotlin
4648### Plugins DSL
49+ ```
4750plugins {
4851 id("de.welt.apps.testdevicemanager") version "1.1"
4952}
50-
53+ ```
5154### Legacy plugin application
55+ ```
5256buildscript {
5357 repositories {
5458 maven {
@@ -61,7 +65,7 @@ buildscript {
6165}
6266
6367apply(plugin = "de.welt.apps.testdevicemanager")
64-
68+ ```
6569# Setup
6670All of the following extension values can be maintained but do not need to be used at all.
6771```
@@ -97,5 +101,3 @@ The following tasks will be added to the ```device setup``` section of the gradl
97101```
98102Run these tasks before you run your espresso tests and setup your test devices.
99103
100- # More detailed information
101- // add Link to article on Medium.ocm
You can’t perform that action at this time.
0 commit comments