We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fd0f088 + f506aea commit 58f27baCopy full SHA for 58f27ba
docs/test-reports-android.md
@@ -2,13 +2,25 @@
2
3
## Setup
4
5
-Start by including the library:
+1. Start by including the library:
6
7
```groovy
8
androidTestImplementation("com.rubensousa.carioca:report-android:{{ report.version }}")
9
```
10
11
-Then create your own report rule that extends `InstrumentedReportRule`:
+2. Enable the test storage service:
12
+
13
+```groovy
14
+android {
15
+ defaultConfig {
16
+ testInstrumentationRunnerArguments useTestStorageService: 'true'
17
+ }
18
+}
19
20
+androidTestUtil("androidx.test.services:test-services:1.5.0")
21
+```
22
23
+3. Then create your own report rule that extends `InstrumentedReportRule`:
24
25
```kotlin
26
class TestReportRule : InstrumentedReportRule()
0 commit comments