I don’t understand what version is used in what ca...
# gradle
m
I don’t understand what version is used in what case either. In an Android project for example I get the following error in the IDE (compiles fine though nonetheless) even though I have set everything to Java 8:
Copy code
compileOptions {
		sourceCompatibility = JavaVersion.VERSION_1_8
		targetCompatibility = JavaVersion.VERSION_1_8
	}

	kotlinOptions {
		freeCompilerArgs = listOf(“-XXLanguage:+NewInference”)
		jvmTarget = “1.8"
	}