Skip to content

Commit 792cc29

Browse files
authored
Update README.md
1 parent 8bea73e commit 792cc29

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

README.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
1-
# Unified Code Coverage for Android
1+
2+
# Android Studio default process
3+
4+
### Enable test coverage first at app lavel gradle
5+
6+
```
7+
buildTypes {
8+
debug {
9+
testCoverageEnabled true
10+
}
11+
release {
12+
minifyEnabled false
13+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
14+
testCoverageEnabled true
15+
}
16+
}
17+
```
18+
19+
220

321
A sample project showcase of how to merge the coverage data from both `androidTest` and `test`.
422

0 commit comments

Comments
 (0)