You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*Android Gradle Plugin version 8.0 till 8.3.0-alpha04 suffered from a [bug](https://issuetracker.google.com/u/0/issues/281266702) that made it impossible (by normal means) to get access to non-instrumented class files, this bug lasted for a long time and was only fixed in 8.3.0-alpha05. This means there is no stable working plugin version available for these AGP versions.*
*Android Gradle Plugin version 7 till 7.2.0-alpha05 suffered from a [bug](https://issuetracker.google.com/issues/195860510) that caused instrumented coverage in Android library modules to fail, this has only been [fixed](https://github.com/NeoTech-Software/Android-Root-Coverage-Plugin/issues/36#issuecomment-977241070) in Android Gradle Plugin 7.2.0-alpha06. This means there is no stable working plugin version available for these AGP versions.*
166
254
</details>
167
255
168
256
<details>
169
-
<summary><b>Note 4: group ID change & Maven Central</b></summary>
257
+
<summary><b>Note 3: Versions 1.0.2 to 1.3.0</b></summary>
170
258
171
-
*Plugin versions below 1.3.1, such as 1.3.0, are only available on the Gradle Plugin Portal (`maven { url "https://plugins.gradle.org/m2/"}`) and not on Maven Central. These versions use the group ID `org.neotech.plugin` and plugin ID `org.neotech.plugin.rootcoverage`!*
259
+
*Plugin versions below 1.3.1, such as 1.3.0, are only available on the Gradle Plugin Portal and not on Maven Central. These versions use the group ID `org.neotech.plugin` and plugin ID `org.neotech.plugin.rootcoverage`! For more info see: [Bintray/JCenter shutdown](#4-bintrayjcenter-shutdown).*
172
260
</details>
173
261
174
262
<details>
175
-
<summary><b>Note 5: AGP versions before 3.4.0-alpha05</b></summary>
263
+
<summary><b>Note 4: AGP versions before 3.4.0-alpha05</b></summary>
176
264
177
265
*Android Gradle Plugin versions before `3.4.0-alpha05` are affected by a bug that in certain conditions can cause Jacoco instrumentation to fail in combination with inline kotlin methods shared across modules. For more information see: [issue #109771903](https://issuetracker.google.com/issues/109771903) and [issue #110763361](https://issuetracker.google.com/issues/110763361). If your project is affected by this upgrade to an Android Gradle Plugin version of at least `3.4.0-alpha05`.*
178
266
</details>
@@ -184,18 +272,25 @@ the Android-Root-Coverage-Plugin has been migrated to Sonatype's Maven Central r
184
272
meant that the group ID used by the Android-Root-Coverage-Plugin had to be changed from `org.neotech.plugin` to
185
273
`nl.neotech.plugin`. The plugin ID has also changed from `org.neotech.plugin.rootcoverage` to `nl.neotech.plugin.rootcoverage`.
186
274
187
-
JCenter is supposed to stay available as read-only repository, however it is probably better to migrate to
188
-
the Gradle Plugin Portal, since all version of this plugin are also available there:
189
-
```groovy
190
-
pluginManagement {
191
-
repositories {
192
-
gradlePluginPortal()
275
+
<details>
276
+
<summary><strong>More info</strong></summary>
277
+
278
+
JCenter is supposed to stay available as read-only repository, however it is probably better to
279
+
migrate to the Gradle Plugin Portal, as it is the official Gradle repository for plugins, and all
280
+
versions of this plugin are available there:
281
+
```groovy
282
+
pluginManagement {
283
+
repositories {
284
+
// Add this repository to your build script for plugin resolution, above mavenCentral() or jcenter()
285
+
gradlePluginPortal()
286
+
}
193
287
}
194
-
}
195
-
```
196
-
Version 1.3.0 has been re-released (as 1.3.1) with the new group ID and plugin ID to Maven Central and the
197
-
Gradle Plugin Portal. Upcoming versions will also be released to Maven Central and the Gradle Plugin Portal.
198
-
Check the [setup](#1-setup) section on how to use this plugin with the updated group ID and plugin ID.
288
+
```
289
+
Version 1.3.0 has been re-released (as 1.3.1) with the new group ID and plugin ID to Maven Central and the
290
+
Gradle Plugin Portal. Upcoming versions will also be released to Maven Central and the Gradle Plugin Portal.
291
+
Check the [setup](#1-setup) section on how to use this plugin with the updated group ID and plugin ID.
0 commit comments