Ensure Android Java and Kotlin compile to the same version

This commit is contained in:
Marcel Admiraal
2022-06-01 16:23:44 +01:00
parent 11b683dab7
commit b19bbadcf0
8 changed files with 69 additions and 12 deletions
+15
View File
@@ -1,4 +1,19 @@
// Configure the root project.
pluginManagement {
apply from: 'app/config.gradle'
plugins {
id 'com.android.application' version versions.androidGradlePlugin
id 'com.android.library' version versions.androidGradlePlugin
id 'org.jetbrains.kotlin.android' version versions.kotlinVersion
id 'io.github.gradle-nexus.publish-plugin' version versions.nexusPublishVersion
}
repositories {
gradlePluginPortal()
google()
}
}
rootProject.name = "Godot"
include ':app'