Merge pull request #61579 from madmiraal/android-kotlin-java-version

Ensure Android Java and Kotlin compile to the same version
This commit is contained in:
Rémi Verschelde 2022-06-01 18:31:09 +02:00 committed by GitHub
commit cd7871867f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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
@ -31,6 +34,10 @@ android {
targetCompatibility versions.javaVersion
}
kotlinOptions {
jvmTarget = versions.javaVersion
}
buildTypes {
dev {
initWith debug