diff --git a/app/build.gradle b/app/build.gradle index 49a2ab91..32511a2f 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -3,8 +3,8 @@ apply plugin: 'kotlin-android' apply plugin: 'kotlin-parcelize' android { - compileSdk 34 - buildToolsVersion "34.0.0" + compileSdk = 34 + buildToolsVersion = "34.0.0" defaultConfig { minSdkVersion 24 @@ -22,18 +22,18 @@ android { } } - flavorDimensions "default" + flavorDimensions += "default" productFlavors { tempo { - dimension "default" + dimension = "default" applicationId 'com.cappielloantonio.tempo' versionCode 22 versionName '3.5.7' } notquitemy { - dimension "default" + dimension = "default" applicationId "com.cappielloantonio.notquitemy.tempo" versionCode 1 versionName "1.0.0" @@ -72,10 +72,10 @@ dependencies { implementation 'androidx.constraintlayout:constraintlayout:2.1.4' implementation 'androidx.coordinatorlayout:coordinatorlayout:1.2.0' implementation 'androidx.preference:preference-ktx:1.2.1' - implementation 'androidx.navigation:navigation-fragment-ktx:2.7.4' - implementation 'androidx.navigation:navigation-ui-ktx:2.7.4' - implementation 'androidx.recyclerview:recyclerview:1.3.1' - implementation 'androidx.room:room-runtime:2.5.2' + implementation 'androidx.navigation:navigation-fragment-ktx:2.7.5' + implementation 'androidx.navigation:navigation-ui-ktx:2.7.5' + implementation 'androidx.recyclerview:recyclerview:1.3.2' + implementation 'androidx.room:room-runtime:2.6.0' implementation 'androidx.core:core-splashscreen:1.0.1' implementation "androidx.appcompat:appcompat:1.6.1" @@ -94,7 +94,7 @@ dependencies { tempoImplementation 'androidx.media3:media3-cast:1.1.1' annotationProcessor 'com.github.bumptech.glide:compiler:4.16.0' - annotationProcessor 'androidx.room:room-compiler:2.5.2' + annotationProcessor 'androidx.room:room-compiler:2.6.0' // Retrofit implementation 'com.squareup.retrofit2:retrofit:2.9.0' diff --git a/build.gradle b/build.gradle index c7874e70..962a578c 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:8.1.0' + classpath 'com.android.tools.build:gradle:8.1.2' classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0' } }