Support Java 1.8 (#25470)

This commit is contained in:
Dan Field 2018-12-17 14:40:48 -08:00 committed by GitHub
parent 632e21b40b
commit 0a798105ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,6 +26,13 @@ buildscript {
}
}
android {
compileOptions {
sourceCompatibility 1.8
targetCompatibility 1.8
}
}
apply plugin: FlutterPlugin
class FlutterPlugin implements Plugin<Project> {