Unresolved reference: JavaVersion.VERSION_1_8

Viewed 4190

How to fix the following error?

android {
    ...
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    ...
}

Android Studio --> File --> Project Structure --> Modules --> Unresolved reference: JavaVersion.VERSION_1_8

enter image description here

1 Answers

I added to the buildscript section of the root build.gradle the ext.java_version variable

buildscript {
    ...
    ext.java_version = JavaVersion.VERSION_1_8
    ...
}

and changed in the module's build.gradle JavaVersion.VERSION_1_8 to java_version

android {
    ...
    compileOptions {
        sourceCompatibility java_version
        targetCompatibility java_version
    }
    ...
}

Now it's all work fine.

enter image description here

Related