Updated to Gradle 9

This commit is contained in:
Anuken
2026-02-24 00:32:22 -05:00
parent eedfb62cf2
commit 41edbd338d
4 changed files with 8 additions and 8 deletions

View File

@@ -16,7 +16,7 @@ configurations{ natives }
repositories{
mavenCentral()
maven{ url "https://maven.google.com" }
maven{ url = "https://maven.google.com" }
}
task deploy(type: Copy){
@@ -71,7 +71,7 @@ android{
}
props.store(file('../core/assets/version.properties').newWriter(), null)
multiDexEnabled true
multiDexEnabled = true
}
compileOptions{
@@ -114,7 +114,7 @@ android{
if(project.hasProperty("RELEASE_STORE_FILE") || System.getenv("CI") == "true"){
buildTypes{
release{
signingConfig signingConfigs.release
signingConfig = signingConfigs.release
}
}
}