Error Unsupported major.minor version 52.0 after installing VS2015 in W10

前端 未结 2 1268
借酒劲吻你
借酒劲吻你 2021-01-24 06:31

After installing VS2015 in W10, and trying to compile a project which works perfectly in W7, I´m getting this error: Unsupported major.minor version 52.0.

I tried to ins

2条回答
  •  逝去的感伤
    2021-01-24 06:45

    Usually this error comes up, when your project compiles/runs against lets say Java 7, while referencing some dependency which is compiled against Java 8 (and uses Java 8 features).
    Check your compiler level or your runtime configuration.

提交回复
热议问题