Enable Java 8 language feature support

This commit is contained in:
Eugene
2019-12-26 16:47:33 -05:00
parent bc825bdefa
commit c349fb0e37

View File

@ -91,6 +91,14 @@ android {
checkReleaseBuilds false
}
compileOptions {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
kotlinOptions {
jvmTarget = "1.8"
}
}
dependencies {