Unresolved reference: JavaVersion.VERSION_1_8
问题 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 回答1: 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