From cdf0bbca5bd668257561e815ad97110655a03304 Mon Sep 17 00:00:00 2001 From: Sergejs Luhmirins Date: Wed, 4 Mar 2026 15:15:32 +0200 Subject: [PATCH] Bump dependency versions --- build.gradle | 19 +++++++------------ gradle/wrapper/gradle-wrapper.properties | 2 +- 2 files changed, 8 insertions(+), 13 deletions(-) diff --git a/build.gradle b/build.gradle index d3808ae..3f72609 100644 --- a/build.gradle +++ b/build.gradle @@ -7,14 +7,13 @@ buildscript { maven { url "https://plugins.gradle.org/m2/" } } dependencies { - classpath "com.android.tools.build:gradle:8.13.2" + classpath "com.android.tools.build:gradle:9.0.1" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.2.21" - classpath "com.vanniktech.maven.publish:com.vanniktech.maven.publish.gradle.plugin:0.35.0" + classpath "com.vanniktech.maven.publish:com.vanniktech.maven.publish.gradle.plugin:0.36.0" } } apply plugin: "com.android.library" -apply plugin: "org.jetbrains.kotlin.android" repositories { google() @@ -47,10 +46,6 @@ android { targetCompatibility = JavaVersion.VERSION_17 } - kotlinOptions { - jvmTarget = JavaVersion.VERSION_17.toString() - } - buildFeatures { buildConfig true } @@ -58,13 +53,13 @@ android { buildTypes { debug { minifyEnabled false - proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" + proguardFiles getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro" buildConfigField("Integer", "LIBRARY_VERSION_CODE", "${project.property("VERSION_CODE")}") } release { minifyEnabled false - proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" + proguardFiles getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro" buildConfigField("String", "LIBRARY_PACKAGE_VERSION", "\"${project.version}\"") buildConfigField("Integer", "LIBRARY_VERSION_CODE", "${project.property("VERSION_CODE")}") } @@ -82,13 +77,13 @@ android { } dependencies { - implementation "org.jetbrains.kotlin:kotlin-stdlib:2.2.21" - implementation "androidx.activity:activity-ktx:1.12.2" + implementation "org.jetbrains.kotlin:kotlin-stdlib:2.3.0" + implementation "androidx.activity:activity-ktx:1.12.4" testImplementation "junit:junit:4.13.2" testImplementation "androidx.test.ext:junit:1.3.0" testImplementation "androidx.test:core:1.7.0" - testImplementation "org.robolectric:robolectric:4.16" + testImplementation "org.robolectric:robolectric:4.16.1" } apply from: ".github/publish/publishConfig.gradle" diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 0013148..654495b 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ #Tue Sep 02 17:31:09 EEST 2025 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists