Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

warning: Supported source version 'RELEASE_7' from annotation processor 'org.jetbrains.kotlin.kapt3.ProcessorWrapper' less than -source '1.8'

I get this error message when I compile with Android Studio 3.1 and Kotlin. What I need to configure to avoid this warning?

warning: Supported source version 'RELEASE_7' from annotation processor 'org.jetbrains.kotlin.kapt3.ProcessorWrapper' less than -source '1.8'
like image 453
grenzfrequence Avatar asked Apr 09 '18 13:04

grenzfrequence


1 Answers

That warning is a bug, that happens when you use kapt instead of annotationProcessor on some libraries, for example Room on version: 1.0.0 (fixed by using version: 1.1.0-beta2).

like image 133
Saba-21 Avatar answered Nov 09 '22 00:11

Saba-21