Update dependencies & application version.

This commit is contained in:
Thomas Andres Gomez 2022-06-21 17:47:34 +02:00
parent 4f3fabc4d6
commit 52cfe78b6e
4 changed files with 20 additions and 21 deletions

View file

@ -6,15 +6,15 @@ plugins {
}
android {
compileSdk 31
buildToolsVersion "31.0.0"
compileSdk 32
buildToolsVersion "33.0.0"
defaultConfig {
applicationId "com.pixelized.biblib"
minSdk 23
targetSdk 31
targetSdk 32
versionCode generateVersionCode()
versionName "0.1.2"
versionName "0.1.3"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
@ -61,7 +61,6 @@ android {
kotlinOptions {
jvmTarget = '1.8'
useIR = true
}
buildFeatures {
@ -69,7 +68,7 @@ android {
}
composeOptions {
kotlinCompilerExtensionVersion '1.1.0'
kotlinCompilerExtensionVersion '1.2.0-rc01'
}
packagingOptions {
@ -81,20 +80,23 @@ android {
dependencies {
// Android core
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'com.google.android.material:material:1.6.0'
implementation 'androidx.core:core-ktx:1.8.0'
implementation 'androidx.appcompat:appcompat:1.4.2'
implementation 'com.google.android.material:material:1.6.1'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.4.1'
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.4.1"
implementation 'androidx.activity:activity-compose:1.4.0'
// Android Compose
implementation "androidx.compose.ui:ui:1.2.0-beta01"
implementation "androidx.compose.ui:ui:1.2.0-rc01"
implementation "androidx.compose.material:material:1.1.1"
implementation "androidx.compose.runtime:runtime-livedata:1.1.1"
implementation "androidx.compose.ui:ui-tooling-preview:1.1.1"
debugImplementation "androidx.compose.ui:ui-tooling:1.1.1"
// Paging
implementation "androidx.paging:paging-compose:1.0.0-alpha15"
// Material design icons
implementation "androidx.compose.material:material-icons-core:1.1.1"
implementation "androidx.compose.material:material-icons-extended:1.1.1"
@ -114,15 +116,15 @@ dependencies {
implementation "androidx.navigation:navigation-compose:2.4.2"
// Splash Screen support prior to Android 12
implementation "androidx.core:core-splashscreen:1.0.0-beta02"
implementation "androidx.core:core-splashscreen:1.0.0-rc01"
// Google sign in.
implementation "com.google.android.gms:play-services-auth:20.1.0"
implementation "com.google.android.gms:play-services-auth:20.2.0"
// 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.8'
implementation 'com.google.code.gson:gson:2.8.9'
// Logging Network Calls
implementation "com.squareup.okhttp3:logging-interceptor:4.8.1"
@ -131,7 +133,6 @@ dependencies {
implementation "androidx.room:room-runtime:2.4.2"
implementation "androidx.room:room-ktx:2.4.2"
kapt "androidx.room:room-compiler:2.4.2"
implementation "androidx.paging:paging-compose:1.0.0-alpha14"
}
static def generateVersionCode() {