We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 26a9c59 + b708522 commit a8bf9a1Copy full SHA for a8bf9a1
build.gradle
@@ -29,7 +29,9 @@ configurations {
29
}
30
31
dependencies {
32
- implementation group: 'net.bytebuddy', name: 'byte-buddy-dep', version: '1.10.20'
+ implementation group: 'net.bytebuddy', name: 'byte-buddy-dep', version: '1.11.2'
33
+ // byte buddy contains references to jna classes and without them the r8Jar step fails
34
+ compileOnly group: 'net.java.dev.jna', name: 'jna', version: '5.8.0'
35
36
// Dependencies we load only as part of rewriting them, iff the target app includes them:
37
compileOnly group: 'commons-httpclient', name: 'commons-httpclient', version: '3.1'
0 commit comments