When building my application I am receiving the error:
Unsupported major.minor version 51.0
After attempting to solve the problem myself using previous answers I am still unable to build the program. My understanding is that this error is caused due to incompatible compiler compliance and runtime environments.
Previous solutions have suggested to:
- Upgrade your Java runtime or
- Recompile the class if you have the source, using your local Java compiler (if you have one).
@Brad Parks - https://stackoverflow.com/users/26510/brad-parks
As I am not able to recompile the file producing the error I have attempted to upgrade my JRE from JSK1.6 to JDK1.8 - This now produces the error:
Unsupported major.minor version 52.0
I am still very new to Java so expect that I may have overlooked / misunderstood something