We still need to set Java 8 compatibility

This commit is contained in:
Felix Ableitner 2016-10-21 16:49:51 +09:00
parent 220917e060
commit 8ffae81f92
1 changed files with 4 additions and 0 deletions

View File

@ -87,6 +87,10 @@ android {
versionCode Integer.parseInt("0" + defaultConfig.versionCode)
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
task buildNative(type: Exec) {