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

View File

@@ -17,7 +17,7 @@ buildscript{
mavenLocal() mavenLocal()
mavenCentral() mavenCentral()
google() google()
maven{ url 'https://jitpack.io' } maven{ url = 'https://jitpack.io' }
} }
dependencies{ dependencies{
@@ -180,8 +180,8 @@ allprojects{
repositories{ repositories{
mavenLocal() mavenLocal()
mavenCentral() mavenCentral()
maven{ url "https://central.sonatype.com/repository/maven-snapshots" } maven{ url = "https://central.sonatype.com/repository/maven-snapshots" }
maven{ url 'https://jitpack.io' } maven{ url = 'https://jitpack.io' }
} }
task clearCache{ task clearCache{

View File

@@ -26,4 +26,4 @@ org.gradle.caching=true
org.gradle.internal.http.socketTimeout=100000 org.gradle.internal.http.socketTimeout=100000
org.gradle.internal.http.connectionTimeout=100000 org.gradle.internal.http.connectionTimeout=100000
android.enableR8.fullMode=false android.enableR8.fullMode=false
archash=9045acbeb2 archash=faea4bb1a6

View File

@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists