gradle: gradle and dependencies update

This commit is contained in:
antonio 2023-11-05 16:07:12 +01:00
parent a92403bda4
commit 5d4dfe1ac7
2 changed files with 11 additions and 11 deletions

View file

@ -3,8 +3,8 @@ apply plugin: 'kotlin-android'
apply plugin: 'kotlin-parcelize' apply plugin: 'kotlin-parcelize'
android { android {
compileSdk 34 compileSdk = 34
buildToolsVersion "34.0.0" buildToolsVersion = "34.0.0"
defaultConfig { defaultConfig {
minSdkVersion 24 minSdkVersion 24
@ -22,18 +22,18 @@ android {
} }
} }
flavorDimensions "default" flavorDimensions += "default"
productFlavors { productFlavors {
tempo { tempo {
dimension "default" dimension = "default"
applicationId 'com.cappielloantonio.tempo' applicationId 'com.cappielloantonio.tempo'
versionCode 22 versionCode 22
versionName '3.5.7' versionName '3.5.7'
} }
notquitemy { notquitemy {
dimension "default" dimension = "default"
applicationId "com.cappielloantonio.notquitemy.tempo" applicationId "com.cappielloantonio.notquitemy.tempo"
versionCode 1 versionCode 1
versionName "1.0.0" versionName "1.0.0"
@ -72,10 +72,10 @@ dependencies {
implementation 'androidx.constraintlayout:constraintlayout:2.1.4' implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.coordinatorlayout:coordinatorlayout:1.2.0' implementation 'androidx.coordinatorlayout:coordinatorlayout:1.2.0'
implementation 'androidx.preference:preference-ktx:1.2.1' implementation 'androidx.preference:preference-ktx:1.2.1'
implementation 'androidx.navigation:navigation-fragment-ktx:2.7.4' implementation 'androidx.navigation:navigation-fragment-ktx:2.7.5'
implementation 'androidx.navigation:navigation-ui-ktx:2.7.4' implementation 'androidx.navigation:navigation-ui-ktx:2.7.5'
implementation 'androidx.recyclerview:recyclerview:1.3.1' implementation 'androidx.recyclerview:recyclerview:1.3.2'
implementation 'androidx.room:room-runtime:2.5.2' implementation 'androidx.room:room-runtime:2.6.0'
implementation 'androidx.core:core-splashscreen:1.0.1' implementation 'androidx.core:core-splashscreen:1.0.1'
implementation "androidx.appcompat:appcompat:1.6.1" implementation "androidx.appcompat:appcompat:1.6.1"
@ -94,7 +94,7 @@ dependencies {
tempoImplementation 'androidx.media3:media3-cast:1.1.1' tempoImplementation 'androidx.media3:media3-cast:1.1.1'
annotationProcessor 'com.github.bumptech.glide:compiler:4.16.0' 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 // Retrofit
implementation 'com.squareup.retrofit2:retrofit:2.9.0' implementation 'com.squareup.retrofit2:retrofit:2.9.0'

View file

@ -4,7 +4,7 @@ buildscript {
mavenCentral() mavenCentral()
} }
dependencies { 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' classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0'
} }
} }