You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/configuration.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,8 +69,8 @@ fladle {
69
69
recordVideo = false
70
70
performanceMetrics = false
71
71
devices = [
72
-
[ "model": "NexusLowRes", "version": "28" ],
73
-
[ "model": "Nexus5", "version": "23" ]
72
+
[ "model": "SmallPhone.arm", "version": "28" ],
73
+
[ "model": "MediumPhone.arm", "version": "33" ]
74
74
]
75
75
projectId("flank-gradle")
76
76
flankVersion = "{{ fladle.flank_version }}"
@@ -193,15 +193,15 @@ A list of devices to run the tests against. When list is empty, a default device
193
193
=== "Groovy"
194
194
``` groovy
195
195
devices = [
196
-
[ "model": "Pixel2", "version": "26" ],
197
-
[ "model": "Nexus5", "version": "23" ]
196
+
[ "model": "MediumPhone.arm", "version": "26" ],
197
+
[ "model": "MediumPhone.arm", "version": "33" ]
198
198
]
199
199
```
200
200
=== "Kotlin"
201
201
``` kotlin
202
202
devices.set(listOf(
203
-
mapOf("model" to "Pixel2", "version" to "26" ),
204
-
mapOf("model" to "Nexus5", "version" to "23" )
203
+
mapOf("model" to "MediumPhone.arm", "version" to "26" ),
204
+
mapOf("model" to "MediumPhone.arm", "version" to "33" )
205
205
))
206
206
```
207
207
@@ -490,7 +490,7 @@ A list of paths that will be copied from the device's storage to the designated
490
490
```
491
491
492
492
### filesToDownload
493
-
List of regex that is matched against bucket paths (for example: `2019-01-09_00:13:06.106000_YCKl/shard_0/NexusLowRes-28-en-portrait/bugreport.txt`) for files to be downloaded after a flank run. The results are downloaded to the `APP_MODULE/build/fladle/RESULTS` directory where RESULTS can be set by [`localResultsDir`](../configuration/#localresultsdir) var otherwise defaulting to `results/`.
493
+
List of regex that is matched against bucket paths (for example: `2019-01-09_00:13:06.106000_YCKl/shard_0/SmallPhone.arm-28-en-portrait/bugreport.txt`) for files to be downloaded after a flank run. The results are downloaded to the `APP_MODULE/build/fladle/RESULTS` directory where RESULTS can be set by [`localResultsDir`](../configuration/#localresultsdir) var otherwise defaulting to `results/`.
0 commit comments