File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
src/main/kotlin/org/neotech/plugin/rootcoverage Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -124,11 +124,11 @@ rootCoverage {
124
124
// which usually requires this attribute to be true
125
125
includeNoLocationClasses false
126
126
127
- // Upcoming in 1.7: If set to true instrumented tests will be attempt to run on
127
+ // Since 1.7 (experimental) : If set to true instrumented tests will be attempt to run on
128
128
// Gradle Managed Devices before trying devices connected through other means (ADB).
129
129
runOnGradleManagedDevices false
130
130
131
- // Upcoming in 1.7: The name of the Gradle Managed device to run instrumented tests on.
131
+ // Since 1.7 (experimental) : The name of the Gradle Managed device to run instrumented tests on.
132
132
// This is only used if `runOnGradleManagedDevices` is set to true. If not given tests will be
133
133
// run on all available Gradle Managed Devices
134
134
gradleManagedDeviceName "nexusoneapi30"
@@ -139,6 +139,7 @@ rootCoverage {
139
139
# 4. Compatibility
140
140
| Version | [ Android Gradle plugin version] ( https://developer.android.com/studio/releases/gradle-plugin#updating-gradle ) | Gradle version |
141
141
| ----------------| --------------------------------------------------------------------------------------------------------------| -------------------|
142
+ | ** 1.7.0** | 7.4 | 7.5+ |
142
143
| ** 1.6.0** | 7.3 | 7.4+ |
143
144
| ** 1.5.3** | 7.2 | 7.3+ |
144
145
| ** See note 2** | 7.0-7.2-alpha05 | n.a. |
Original file line number Diff line number Diff line change 1
1
POM_ARTIFACT_ID =android-root-coverage-plugin
2
- VERSION_NAME =1.6 .0
2
+ VERSION_NAME =1.7 .0
3
3
POM_NAME =Android Root Coverage Plugin
4
4
POM_DESCRIPTION =A Gradle plugin for easy generation of combined code coverage reports for Android projects with multiple modules.
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ import java.io.File
22
22
23
23
class RootCoveragePlugin : Plugin <Project > {
24
24
25
- private val minimumRequiredAgpVersion = AndroidPluginVersion (7 , 2 ).alpha( 6 )
25
+ private val minimumRequiredAgpVersion = AndroidPluginVersion (7 , 4 )
26
26
27
27
private lateinit var rootProjectExtension: RootCoveragePluginExtension
28
28
You can’t perform that action at this time.
0 commit comments