diff --git a/app/build.gradle b/app/build.gradle index b52220caf..8d164c59d 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,12 +1,12 @@ apply plugin: 'com.android.application' android { - compileSdk 34 + compileSdk = 36 defaultConfig { applicationId "fr.gaulupeau.apps.InThePoche" minSdkVersion 21 - targetSdkVersion 34 + targetSdkVersion 35 versionCode 233 versionName "2.5.3" @@ -49,19 +49,19 @@ 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 } } dependencies { - implementation 'androidx.appcompat:appcompat:1.7.0' - implementation 'androidx.media:media:1.7.0' + implementation 'androidx.appcompat:appcompat:1.7.1' + implementation 'androidx.media:media:1.7.1' 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' diff --git a/build.gradle b/build.gradle index 7e468c667..8bdc02eb9 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.13.1' } } @@ -14,7 +14,7 @@ allprojects { repositories { google() mavenCentral() - maven { url "https://jitpack.io" } + maven { url = "https://jitpack.io" } } } 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