Explorar el Código

Updated dependencies

Vadik Sirekanyan hace 2 años
padre
commit
871d2551d0
Se han modificado 5 ficheros con 15 adiciones y 11 borrados
  1. 2 2
      app/build.gradle
  2. 6 6
      build.gradle
  3. BIN
      gradle/wrapper/gradle-wrapper.jar
  4. 3 2
      gradle/wrapper/gradle-wrapper.properties
  5. 4 1
      gradlew

+ 2 - 2
app/build.gradle

@@ -9,11 +9,11 @@ plugins {
 
 android {
     namespace 'com.sirekanian.warmongr'
-    compileSdk 33
+    compileSdk 34
     defaultConfig {
         applicationId "com.sirekanian.warmongr"
         minSdk 21
-        targetSdk 33
+        targetSdk 34
         versionCode appVersionCode as int
         versionName appVersionName
         archivesBaseName = "$applicationId-$versionName-$versionCode"

+ 6 - 6
build.gradle

@@ -1,10 +1,10 @@
 buildscript {
     ext {
-        androidPluginVersion = '8.0.2'
-        kotlinVersion = '1.8.21'
-        composeCompilerVersion = '1.4.7'
-        composeMaterialVersion = '1.4.3'
-        roomVersion = '2.5.1'
+        androidPluginVersion = '8.1.0'
+        kotlinVersion = '1.9.0'
+        composeCompilerVersion = '1.5.1'
+        composeMaterialVersion = '1.5.0'
+        roomVersion = '2.5.2'
     }
 }
 
@@ -13,7 +13,7 @@ plugins {
     id 'org.jetbrains.kotlin.android' version "$kotlinVersion" apply false
     // TODO: 1202468796234411
     // id 'org.jetbrains.kotlin.plugin.serialization' version "$kotlinVersion" apply false
-    id 'com.google.devtools.ksp' version "$kotlinVersion-1.0.11" apply false
+    id 'com.google.devtools.ksp' version "$kotlinVersion-1.0.13" apply false
     id 'org.sirekanyan.version-checker' version "1.0.7" apply false
 }
 

BIN
gradle/wrapper/gradle-wrapper.jar


+ 3 - 2
gradle/wrapper/gradle-wrapper.properties

@@ -1,7 +1,8 @@
 distributionBase=GRADLE_USER_HOME
 distributionPath=wrapper/dists
-distributionSha256Sum=e111cb9948407e26351227dabce49822fb88c37ee72f1d1582a69c68af2e702f
-distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
+distributionSha256Sum=03ec176d388f2aa99defcadc3ac6adf8dd2bce5145a129659537c0874dea5ad1
+distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
 networkTimeout=10000
+validateDistributionUrl=true
 zipStoreBase=GRADLE_USER_HOME
 zipStorePath=wrapper/dists

+ 4 - 1
gradlew

@@ -130,10 +130,13 @@ location of your Java installation."
     fi
 else
     JAVACMD=java
-    which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+    if ! command -v java >/dev/null 2>&1
+    then
+        die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
 
 Please set the JAVA_HOME variable in your environment to match the
 location of your Java installation."
+    fi
 fi
 
 # Increase the maximum file descriptors if we can.