I am currently trying to load a class from another project, but it gives me this error in run-time and not compile time:
VFY: unable to resolve static field 840 (Read) in Lshared/TestingMode;
Caused by: java.lang.NoClassDefFoundError: shared.TestingMode
And this is the class :
public enum TestingMode {
Read,
Write}
I have imported the projects and fixed the Java Build Path so there are no compile errors.