mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 14:11:15 +00:00
- gradle: 8.2 -> 8.11.1 - androidx.constraintlayout:constraintlayout: 2.1.4 -> 2.2.1 - Android gradle plugin: 8.2.0 -> 8.6.1 - Android compile sdk: 34 -> 35 - Android target sdk: 34 -> 35 - Android build tools: 34.0.0 -> 35.0.0 - kotlin: 1.9.20 -> 2.1.20 - androidx.fragment:fragment: 1.7.1 -> 1.8.6 - OpenXR vendors plugin: 3.1.2-stable -> 4.0.0-stable
19 lines
631 B
Groovy
19 lines
631 B
Groovy
// This is the root directory of the Godot Android gradle build.
|
|
pluginManagement {
|
|
apply from: 'config.gradle'
|
|
|
|
plugins {
|
|
id 'com.android.application' version versions.androidGradlePlugin
|
|
id 'org.jetbrains.kotlin.android' version versions.kotlinVersion
|
|
}
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
maven { url "https://plugins.gradle.org/m2/" }
|
|
maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots/"}
|
|
}
|
|
}
|
|
|
|
include ':assetPacksInstallTime'
|
|
project(':assetPacksInstallTime').projectDir = file("assetPacks/installTime")
|