java.awt.color on android
See original GitHub issueI am having this issue on windows and on android using a part of this library. I am only using it to create OSC Messages with arguments and to parse it to a byteBuffer so I can send it via my own protocol.
Error log on android:
java.lang.NoClassDefFoundError: Failed resolution of: Ljava/awt/Color; at com.illposed.osc.argument.handler.AwtColorArgumentHandler.getJavaClass(AwtColorArgumentHandler.java:43) at com.illposed.osc.OSCSerializer.<init>(OSCSerializer.java:101) at com.illposed.osc.OSCSerializerAndParserBuilder.buildSerializer(OSCSerializerAndParserBuilder.java:64)
EDIT: So when I opened this issue I was in a hurry, but after looking at it a couple hours later I think I found the problem, kind of. The issue is with the java.awt.color library, which is not supported on android. I found some older issues and fixes (#43, #49), so that should mean this problem souldn’t exist. But apperantly it does with the latest version (0.8) of this library, maybe something slipt in?
Issue Analytics
- State:
- Created 2 years ago
- Comments:8 (4 by maintainers)
Top Related StackOverflow Question
Hello my friends, this is a Java workaround from the application perspective. No need to pick weird snapshots:
Enjoy
Ahh nice, thanks @JellevanAbbema !