From c15c57eed7b4d07bd36ee553d3f4dacfb32c32a1 Mon Sep 17 00:00:00 2001 From: Sven Fischer Date: Tue, 1 Jul 2025 20:35:36 +0200 Subject: [PATCH 1/8] update gradle --- build.gradle | 2 +- gradle/wrapper/gradle-wrapper.properties | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 7e468c667..7f5a42c74 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:8.7.3' + classpath 'com.android.tools.build:gradle:8.11.0' } } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 367158436..fef06181b 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ #Wed May 01 16:11:11 CEST 2024 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists From d05f07c792eeee6f1523577dca07d010c2e02bf3 Mon Sep 17 00:00:00 2001 From: Sven Fischer Date: Tue, 1 Jul 2025 20:37:50 +0200 Subject: [PATCH 2/8] increase compileSdk to 36 --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index b52220caf..211e93e07 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,7 +1,7 @@ apply plugin: 'com.android.application' android { - compileSdk 34 + compileSdk 36 defaultConfig { applicationId "fr.gaulupeau.apps.InThePoche" From 565e453a0cda541d0648e8afc65c35c0eb4b9a42 Mon Sep 17 00:00:00 2001 From: Sven Fischer Date: Tue, 1 Jul 2025 20:46:20 +0200 Subject: [PATCH 3/8] set targetSdkVersion 35 Target SDK version 35 is mandatory by 2025-08-31. --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 211e93e07..015100dc5 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -6,7 +6,7 @@ android { defaultConfig { applicationId "fr.gaulupeau.apps.InThePoche" minSdkVersion 21 - targetSdkVersion 34 + targetSdkVersion 35 versionCode 233 versionName "2.5.3" From 0c6a422bd77260c3d2c989b1ff37d984ea9162fa Mon Sep 17 00:00:00 2001 From: Sven Fischer Date: Tue, 1 Jul 2025 21:15:58 +0200 Subject: [PATCH 4/8] gradle: fix property assignment syntax --- app/build.gradle | 8 ++++---- build.gradle | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 015100dc5..2ce9ea3d2 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,7 +1,7 @@ apply plugin: 'com.android.application' android { - compileSdk 36 + compileSdk = 36 defaultConfig { applicationId "fr.gaulupeau.apps.InThePoche" @@ -49,11 +49,11 @@ android { } } lint { - lintConfig file('lint.xml') + lintConfig = file('lint.xml') } - namespace 'fr.gaulupeau.apps.InThePoche' + namespace = 'fr.gaulupeau.apps.InThePoche' buildFeatures { - buildConfig true + buildConfig = true } } diff --git a/build.gradle b/build.gradle index 7f5a42c74..d4f110fab 100644 --- a/build.gradle +++ b/build.gradle @@ -14,7 +14,7 @@ allprojects { repositories { google() mavenCentral() - maven { url "https://jitpack.io" } + maven { url = "https://jitpack.io" } } } From c4d40269eebedb53def5c251f6129c04f5cc9f26 Mon Sep 17 00:00:00 2001 From: Sven Fischer Date: Tue, 1 Jul 2025 21:17:16 +0200 Subject: [PATCH 5/8] update androidx dependencies --- app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 2ce9ea3d2..f30363489 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -58,10 +58,10 @@ android { } dependencies { - implementation 'androidx.appcompat:appcompat:1.7.0' + implementation 'androidx.appcompat:appcompat:1.7.1' implementation 'androidx.media:media:1.7.0' implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' - implementation 'androidx.recyclerview:recyclerview:1.3.2' + implementation 'androidx.recyclerview:recyclerview:1.4.0' implementation 'com.google.android.material:material:1.12.0' implementation 'org.greenrobot:eventbus:3.3.1' implementation 'org.greenrobot:greendao:3.3.0' From 4d251be15703d991f12745346b735b4d8afa5590 Mon Sep 17 00:00:00 2001 From: Sven Fischer Date: Wed, 29 Oct 2025 15:46:20 +0100 Subject: [PATCH 6/8] update gradle to 8.11.2 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index d4f110fab..7ef30ce25 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:8.11.0' + classpath 'com.android.tools.build:gradle:8.11.2' } } From a268ff40053f69243c5619e206e2d4eea1ba77e5 Mon Sep 17 00:00:00 2001 From: Sven Fischer Date: Wed, 29 Oct 2025 15:47:41 +0100 Subject: [PATCH 7/8] update media to 1.7.1 --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index f30363489..8d164c59d 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -59,7 +59,7 @@ android { dependencies { implementation 'androidx.appcompat:appcompat:1.7.1' - implementation 'androidx.media:media:1.7.0' + implementation 'androidx.media:media:1.7.1' implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' implementation 'androidx.recyclerview:recyclerview:1.4.0' implementation 'com.google.android.material:material:1.12.0' From 8c4d150953b73ad116fa09158124a388e75ecc60 Mon Sep 17 00:00:00 2001 From: Sven Fischer Date: Mon, 24 Nov 2025 21:08:26 +0100 Subject: [PATCH 8/8] update gradle to 8.13.1 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 7ef30ce25..8bdc02eb9 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:8.11.2' + classpath 'com.android.tools.build:gradle:8.13.1' } }