Profile

성빈이의 기록장

성빈이

This class can only be used with the compiler argument '-Xopt-in=kotlin.RequiresOptIn' 해결법

728x90

다음과 같이 그레이들을 수정해주면 된다.

kotlinOptions {
	jvmTarget = '1.8'
	freeCompilerArgs += ["-Xopt-in=kotlin.RequiresOptIn"]
}