1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-06 12:20:30 +00:00

Ensure Android Java and Kotlin compile to the same version

This commit is contained in:
Marcel Admiraal
2022-05-31 19:10:15 +01:00
parent 11b683dab7
commit b19bbadcf0
8 changed files with 69 additions and 12 deletions

View File

@@ -1,5 +1,8 @@
// Gradle build config for Godot Engine's Android port.
apply plugin: 'com.android.application'
plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
}
dependencies {
implementation libraries.kotlinStdLib
@@ -29,6 +32,10 @@ android {
targetCompatibility versions.javaVersion
}
kotlinOptions {
jvmTarget = versions.javaVersion
}
buildTypes {
dev {
initWith debug