Skip to content

Commit b4bb0a2

Browse files
authored
Release 1.9.0 (#109)
- Fixed: Code coverage data not picked up when using Gradle Managed Devices in combination with flavors (#102) - Fixed: Code coverage data not picked up when using Gradle Managed Devices in combination with executeAndroidTests=false (thanks to @k4k7us23) (#104) - Based on Android Gradle Plugin 8.6 API - Compatible with Gradle version 8.7+
1 parent 61324cb commit b4bb0a2

File tree

2 files changed

+18
-23
lines changed

2 files changed

+18
-23
lines changed

README.md

+17-22
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ following methods:
2929
```groovy
3030
// Below buildscript {}
3131
plugins {
32-
id "nl.neotech.plugin.rootcoverage" version "1.8.0"
32+
id "nl.neotech.plugin.rootcoverage" version "1.9.0"
3333
}
3434
```
3535
</details>
@@ -42,7 +42,7 @@ following methods:
4242
4343
buildscript {
4444
dependencies {
45-
classpath 'nl.neotech.plugin:android-root-coverage-plugin:1.8.0'
45+
classpath 'nl.neotech.plugin:android-root-coverage-plugin:1.9.0'
4646
}
4747
}
4848
```
@@ -137,26 +137,21 @@ rootCoverage {
137137

138138

139139
# 4. Compatibility
140-
| Version | [Android Gradle plugin version](https://developer.android.com/studio/releases/gradle-plugin#updating-gradle) | Gradle version |
141-
|------------|--------------------------------------------------------------------------------------------------------------|-------------------|
142-
| **1.8.0** | 8.3.0-alpha05 - 8.3.2 | 8.4+ *(note 1)* |
143-
| **Note 2** | 8.0 - 8.3.0-alpha04 | n.a. |
144-
| **1.7.1** | 7.4 | 7.5+ |
145-
| **1.6.0** | 7.3 | 7.4+ |
146-
| **1.5.3** | 7.2 | 7.3+ |
147-
| **Note 3** | 7.0 - 7.2.0-alpha05 | n.a. |
148-
| **1.4.0** | 4.2<br/>4.1 | 6.7.1+<br/>6.5+ |
149-
| **1.3.1** | 4.0<br/>3.6 | 6.1.1+<br/>5.6.4+ |
150-
| **1.2.1** | 3.5 | 5.4.1+ |
151-
| **1.1.2** | 3.4 | 5.1.1+ |
152-
| **1.1.1** | 3.3 | 4.10.1+ |
153-
| **1.0.2** | 3.2 | 4.6+ |
154-
155-
<details open>
156-
<summary><b>Note 1: AGP 8.3.0 and Gradle 8.3</b></summary>
157-
158-
*The Android developers website claims AGP 8.3 requires Gradle version 8.3 as a minimum, however from at least alpha release 11 this seems to instead be Gradle version 8.4!*
159-
</details>
140+
| Version | [Android Gradle plugin version](https://developer.android.com/studio/releases/gradle-plugin#updating-gradle) | Gradle version |
141+
|------------|--------------------------------------------------------------------------------------------------------------|------------------------|
142+
| **1.9.0** | 8.6.0 | 8.7+ |
143+
| **1.8.0** | 8.5.2<br/>8.4.2<br/>8.3.0-alpha05 - 8.3.2 | 8.6+<br/>8.5+<br/>8.4+ |
144+
| **Note 2** | 8.0 - 8.3.0-alpha04 | n.a. |
145+
| **1.7.1** | 7.4 | 7.5+ |
146+
| **1.6.0** | 7.3 | 7.4+ |
147+
| **1.5.3** | 7.2 | 7.3+ |
148+
| **Note 3** | 7.0 - 7.2.0-alpha05 | n.a. |
149+
| **1.4.0** | 4.2<br/>4.1 | 6.7.1+<br/>6.5+ |
150+
| **1.3.1** | 4.0<br/>3.6 | 6.1.1+<br/>5.6.4+ |
151+
| **1.2.1** | 3.5 | 5.4.1+ |
152+
| **1.1.2** | 3.4 | 5.1.1+ |
153+
| **1.1.1** | 3.3 | 4.10.1+ |
154+
| **1.0.2** | 3.2 | 4.6+ |
160155

161156
<details open>
162157
<summary><b>Note 2: AGP 8.0-8.3.0-alpha04</b></summary>

plugin/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
POM_ARTIFACT_ID=android-root-coverage-plugin
2-
VERSION_NAME=1.8.0
2+
VERSION_NAME=1.9.0
33
POM_NAME=Android Root Coverage Plugin
44
POM_DESCRIPTION=A Gradle plugin for easy generation of combined code coverage reports for Android projects with multiple modules.

0 commit comments

Comments
 (0)