-
Notifications
You must be signed in to change notification settings - Fork 111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error building with Android Studio 3.1 #42
Comments
Another workaround: classpath('com.dicedmelon.gradle:jacoco-android:0.1.2') {
exclude group: 'org.codehaus.groovy', module: 'groovy-all'
} |
Also this PR should fix this issue: #41 |
arturdm/jacoco-android-gradle-plugin#42 Signed-off-by: Daniele Ricci <daniele@casaricci.it>
#41 is up-to-date and ready to merge. |
This seemed to cause a failure (local and CI) when the gradle plugin version was bumped. It may be filed here: arturdm/jacoco-android-gradle-plugin#42
This seemed to cause a failure (local and CI) when the gradle plugin version was bumped. It may be filed here: arturdm/jacoco-android-gradle-plugin#42
This is now happening again when using gradle-3.3.0-beta02 and gradle-4.10.1:
EDIT: helps |
@tobiasKaminsky I just opened #53 which should take care of that... |
Any update on #53? I have same issue. |
Still having this issue. Any update on this? |
reference |
|
Fixed in 0.1.4 release. |
After upgrading to Android Studio 3.1, I got error
groovy-all is loaded in version 2.4.4 and you are trying to load version 2.4.12
when building.Project-level
build.gradle
Module-level
build.gradle
Workaround
I added
classpath 'org.codehaus.groovy:groovy-all:2.4.12'
to project-levelbuild.gradle
and the error was gone.Stacktrace
The text was updated successfully, but these errors were encountered: