I am brand new to the world of EGL programming and so far its not my favorite (so please keep your laughs at a minimum). I have tried many tutorials and usually I always end up receiving an error near the end of the tutorial and my project not functioning properly... getting pretty frustrated....
Let's start simple, I just ran through the Create A Hello World Program Tutorial packaged with my software. It is very straightforward, and basically what this is what I understood I was doing..
1) Create a helloMain.egl file which basically just has a main function that calls writeStdOut("Hello");
2) Generate the Java source code from the EGL code. This creates a JavaSource folder with a package inside containing helloMain.java
3) Then I right click, and select Run As > Java Application and I get the following errors:
--> A dialog box that says: "Could not find the main class. Program will exit"
--> The console reads:
java.lang.UnsupportedClassVersionError: hello/helloMain (Unsupported major.minor version 49.0)
+ at java.lang.ClassLoader.defineClass0(Native Method)+
+ at java.lang.ClassLoader.defineClass(ClassLoader.java:539)+
+ at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)+
+ at java.net.URLClassLoader.defineClass(URLClassLoader.java:251)+
+ at java.net.URLClassLoader.access$100(URLClassLoader.java:55)+
+ at java.net.URLClassLoader$1.run(URLClassLoader.java:194)+
+ at java.security.AccessController.doPrivileged(Native Method)+
+ at java.net.URLClassLoader.findClass(URLClassLoader.java:187)+
+ at java.lang.ClassLoader.loadClass(ClassLoader.java:289)+
+ at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)+
+ at java.lang.ClassLoader.loadClass(ClassLoader.java:235)+
+ at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)+ Exception in thread "main"<hr />
Can anyone please help me? Is RBD 7.1 really this hard to use (surely not) ???