From 9ce20ba374f36feac577a40c6677211b6d7d50b1 Mon Sep 17 00:00:00 2001 From: Thomas Andres Gomez Date: Sat, 27 Nov 2021 13:36:21 +0100 Subject: [PATCH] Update dependencies versions. --- app/build.gradle | 36 ++++++++++++++++++------------------ build.gradle | 2 +- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index a02fcac..ceaeca9 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -6,13 +6,13 @@ plugins { } android { - compileSdk 30 - buildToolsVersion "30.0.3" + compileSdk 31 + buildToolsVersion "31.0.0" defaultConfig { applicationId "com.pixelized.biblib" minSdk 23 - targetSdk 30 + targetSdk 31 versionCode generateVersionCode() versionName "0.1.2" @@ -69,40 +69,40 @@ android { } dependencies { - implementation 'androidx.core:core-ktx:1.6.0' - implementation 'androidx.appcompat:appcompat:1.3.1' + implementation 'androidx.core:core-ktx:1.7.0' + implementation 'androidx.appcompat:appcompat:1.4.0' implementation 'com.google.android.material:material:1.4.0' // Android compose - implementation "androidx.compose.ui:ui:1.0.0" + implementation "androidx.compose.ui:ui:1.0.5" // Tooling support (Previews, etc.) - implementation "androidx.compose.ui:ui-tooling:1.0.0" + implementation "androidx.compose.ui:ui-tooling:1.0.5" // Foundation (Border, Background, Box, Image, Scroll, shapes, animations, etc.) - implementation "androidx.compose.foundation:foundation:1.0.0" + implementation "androidx.compose.foundation:foundation:1.0.5" // Material Design - implementation "androidx.compose.material:material:1.0.0" + implementation "androidx.compose.material:material:1.0.5" // Material design icons - implementation "androidx.compose.material:material-icons-core:1.0.0" - implementation "androidx.compose.material:material-icons-extended:1.0.0" + implementation "androidx.compose.material:material-icons-core:1.0.5" + implementation "androidx.compose.material:material-icons-extended:1.0.5" // Integration with activities - implementation "androidx.activity:activity-compose:1.3.0" + implementation "androidx.activity:activity-compose:1.4.0" // Integration with ViewModels - implementation "androidx.lifecycle:lifecycle-viewmodel-compose:1.0.0-alpha07" + implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.4.0" // Integration with observables - implementation "androidx.compose.runtime:runtime-livedata:1.0.0" + implementation "androidx.compose.runtime:runtime-livedata:1.0.5" // ConstraintLayout - implementation "androidx.constraintlayout:constraintlayout-compose:1.0.0-beta02" + implementation "androidx.constraintlayout:constraintlayout-compose:1.0.0-rc02" // Google sign in. implementation "com.google.android.gms:play-services-auth:19.2.0" // Paging - implementation "androidx.paging:paging-compose:1.0.0-alpha12" + implementation "androidx.paging:paging-compose:1.0.0-alpha14" // RetroFit & Gson for webservice call implementation 'com.squareup.retrofit2:retrofit:2.9.0' implementation 'com.squareup.retrofit2:converter-gson:2.9.0' - implementation 'com.google.code.gson:gson:2.8.6' + implementation 'com.google.code.gson:gson:2.8.8' // Logging Network Calls implementation "com.squareup.okhttp3:logging-interceptor:4.8.1" @@ -114,7 +114,7 @@ dependencies { // Test testImplementation 'junit:junit:4.13.2' - androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.0.0" + androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.0.5" } static def generateVersionCode() { diff --git a/build.gradle b/build.gradle index 1e66fd8..e982537 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:7.0.0' + classpath 'com.android.tools.build:gradle:7.0.3' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10" // NOTE: Do not place your application dependencies here; they belong