We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello,
after upgrading the plugin we ran into an issue when executing Android tests with the Gradle task connectedDevDebugAndroidTest.
connectedDevDebugAndroidTest
The error stated:
> org/bouncycastle/asn1/edec/EdECObjectIdentifiers ... Caused by: java.lang.NoClassDefFoundError: org/bouncycastle/asn1/edec/EdECObjectIdentifiers
org.owasp.dependencycheck
I found out that people face the same issue with the SonarQube plugin: https://community.sonarsource.com/t/sonarqube-gradle-plugin-6-0-breaks-android-tasks/130863. The workaround of adding the following code block to the build.gradle file worked for me:
buildscript { dependencies { classpath("org.bouncycastle:bcutil-jdk18on:1.79") } }
There is a Google issue and this will apparently be fixed with AGP version 8.9: https://issuetracker.google.com/issues/380600747
I wanted to share the issue and fix here to maybe save others a few hours of research.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
after upgrading the plugin we ran into an issue when executing Android tests with the Gradle task
connectedDevDebugAndroidTest
.The error stated:
org.owasp.dependencycheck
: 12.1.0I found out that people face the same issue with the SonarQube plugin: https://community.sonarsource.com/t/sonarqube-gradle-plugin-6-0-breaks-android-tasks/130863. The workaround of adding the following code block to the build.gradle file worked for me:
There is a Google issue and this will apparently be fixed with AGP version 8.9: https://issuetracker.google.com/issues/380600747
I wanted to share the issue and fix here to maybe save others a few hours of research.
The text was updated successfully, but these errors were encountered: