build.gradle: Revert target JavaVersion back to VERSION_11

Signed-off-by: 1552980358 <1552980358@qq.com>
This commit is contained in:
1552980358 2021-08-04 17:14:23 +08:00
parent 13ccb69a9f
commit 8ff0f37607

View File

@ -98,8 +98,8 @@ android {
// Flag to enable support for the new language APIs
coreLibraryDesugaringEnabled true
// Sets Java compatibility to Java 11
sourceCompatibility "1.8"
targetCompatibility "1.8"
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
kotlinOptions {