1
0
Fork 0

Android: update dependencies for us

* backported from 33d56dd6fb
  this will need deps from minenux-stuffs site https://gitlab.com/minetest-stuffs/multicraft-deps_androit
merge-requests/1/head
mckaygerhard 2023-09-05 14:04:38 -04:00
parent 9cf737dde1
commit bd244fb402
4 changed files with 7 additions and 7 deletions

View File

@ -61,7 +61,7 @@ public class SDLActivity extends Activity implements View.OnSystemUiVisibilityCh
private static final String TAG = "SDL";
private static final int SDL_MAJOR_VERSION = 2;
private static final int SDL_MINOR_VERSION = 28;
private static final int SDL_MICRO_VERSION = 1;
private static final int SDL_MICRO_VERSION = 2;
/*
// Display InputType.SOURCE/CLASS of events and devices
//

View File

@ -16,7 +16,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.0.2'
classpath 'com.android.tools.build:gradle:8.1.0'
//noinspection GradleDependency
classpath 'de.undercouch:gradle-download-task:4.1.2'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.20'
@ -33,6 +33,6 @@ allprojects {
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
delete rootProject.layout.buildDirectory
delete 'native/deps'
}

View File

@ -1,6 +1,6 @@
#Fri May 05 22:26:30 TRT 2023
#Mon Aug 21 21:17:06 EEST 2023
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

View File

@ -51,8 +51,8 @@ android {
// get precompiled deps
tasks.register('downloadDeps', Download) {
def VERSION = "02072023"
src "https://github.com/MultiCraft/deps_android/releases/download/$VERSION/deps_android.zip"
def VERSION = "11082023"
src "https://gitlab.com/minetest-stuffs/multicraft-deps_androit/-/archive/11082023/multicraft-deps_androit-11082023.zip"
dest new File(buildDir, 'deps.zip')
overwrite false
}