Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ following methods:
```kotlin
plugins {
// Add the plugin to the plugin block
id("nl.neotech.plugin.rootcoverage") version "1.9.0"
id("nl.neotech.plugin.rootcoverage") version "1.10.0"
}
```
</details>
Expand All @@ -40,7 +40,7 @@ following methods:
```groovy
plugins {
// Add the plugin to the plugin block
id "nl.neotech.plugin.rootcoverage" version "1.9.0"
id "nl.neotech.plugin.rootcoverage" version "1.10.0"
}
```
</details>
Expand All @@ -56,7 +56,7 @@ following methods:

buildscript {
dependencies {
classpath 'nl.neotech.plugin:android-root-coverage-plugin:1.9.0'
classpath 'nl.neotech.plugin:android-root-coverage-plugin:1.10.0'
}
}
```
Expand Down Expand Up @@ -227,7 +227,8 @@ for specific modules:
# 4. Compatibility
| Version | [Android Gradle plugin version](https://developer.android.com/studio/releases/gradle-plugin#updating-gradle) | Gradle version |
|------------|--------------------------------------------------------------------------------------------------------------|------------------------|
| **1.9.0** | 8.6.0+ | 8.7+ |
| **1.10.0** | 8.8+ | 8.10.2+ |
| **1.9.0** | 8.6+ | 8.7+ |
| **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+ |
| **Note 1** | 8.0 - 8.3.0-alpha04 | n.a. |
| **1.7.1** | 7.4 | 7.5+ |
Expand Down
2 changes: 1 addition & 1 deletion plugin/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
POM_ARTIFACT_ID=android-root-coverage-plugin
VERSION_NAME=1.9.0
VERSION_NAME=1.10.0
POM_NAME=Android Root Coverage Plugin
POM_DESCRIPTION=A Gradle plugin for easy generation of combined code coverage reports for Android projects with multiple modules.