eba77be573
- Update Java version from 11 to 17 - Update Android gradle plugin version from 7.2.1 to 8.2.0 - Update gradle version from 7.4.2 to 8.2 - Update target SDK from 33 to 34 - Update build tools version from 33.0.2 to 34.0.0 - Update kotlin version from 1.7.0 to 1.9.20 - Update Android fragment version from 1.3.6 to 1.6.2 - Update AndroidX window version from 1.0.0 to 1.2.0 - Update Nexus plugin version from 1.1.0 to 1.3.0
28 lines
860 B
Groovy
28 lines
860 B
Groovy
// 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 'com.android.asset-pack' version versions.androidGradlePlugin
|
|
id 'org.jetbrains.kotlin.android' version versions.kotlinVersion
|
|
id 'io.github.gradle-nexus.publish-plugin' version versions.nexusPublishVersion
|
|
}
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
maven { url "https://plugins.gradle.org/m2/" }
|
|
}
|
|
}
|
|
|
|
rootProject.name = "Godot"
|
|
|
|
include ':app'
|
|
include ':lib'
|
|
include ':nativeSrcsConfigs'
|
|
include ':editor'
|
|
|
|
include ':assetPacks:installTime'
|
|
project(':assetPacks:installTime').projectDir = file("app/assetPacks/installTime")
|