use -source 7 or higher

后端 未结 7 1463
既然无缘
既然无缘 2020-12-28 12:15

While trying to build a project using intelliJ Ultimate 12 I am getting these errors

use -source or higher to enable diamond operator
use -source 7 or higher         


        
7条回答
  •  悲哀的现实
    2020-12-28 13:02

    If using Gradle as a build automation, set following settings in build.gradle and re-import your project:

    sourceCompatibility = 1.7

    targetCompatibility = 1.7

提交回复
热议问题