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
I'm running the samples without issue with jdk11 targeting jre11. Is there something additional that needs to be done to surface this? It appears that Buffer still has the method in question (and is probably the exact same thing really) so is it possible that the jni lookup is actually mapping to the Buffer method and everything still works?
bretambrose
added
closing-soon
This issue will automatically close in 4 days unless further comments are made.
response-requested
Waiting on additional info and feedback. Will move to 'closing-soon' in 7 days.
labels
May 18, 2021
https://github.com/awslabs/aws-crt-java/blob/652a6f853a35cd064dbe1dbff4aedee197991b37/src/native/java_class_ids.c#L204,L210
The ByteBuffer methods won't be able to be found on Java 9+ due to Java's changing the return type to be
ByteBuffer
instead of the superclassBuffer
You may need to update the code to look for what it looks for now, and then if that fails try to look for the other version.
The text was updated successfully, but these errors were encountered: