Skip to content

Commit b708522

Browse files
committed
Update Byte Buddy to 1.11.2 (fixes #3)
1 parent 26a9c59 commit b708522

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ configurations {
2929
}
3030

3131
dependencies {
32-
implementation group: 'net.bytebuddy', name: 'byte-buddy-dep', version: '1.10.20'
32+
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'
3335

3436
// Dependencies we load only as part of rewriting them, iff the target app includes them:
3537
compileOnly group: 'commons-httpclient', name: 'commons-httpclient', version: '3.1'

0 commit comments

Comments
 (0)