Update dependencies / gradle etc.

This commit is contained in:
Andres Gomez, Thomas (ITDV RL) 2024-06-27 11:50:24 +02:00
parent b907e934c9
commit ca41948a75
5 changed files with 73 additions and 57 deletions

View file

@ -24,7 +24,7 @@ android {
defaultConfig { defaultConfig {
applicationId "com.pixelized.biblib" applicationId "com.pixelized.biblib"
minSdk 26 minSdk 26
targetSdk 33 targetSdk 34
versionCode generateVersionCode() versionCode generateVersionCode()
versionName "0.1.6" versionName "0.1.6"
@ -59,20 +59,21 @@ android {
} }
compileOptions { compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8 sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_17
} }
kotlinOptions { kotlinOptions {
jvmTarget = '1.8' jvmTarget = "17"
} }
buildFeatures { buildFeatures {
compose true compose true
buildConfig = true
} }
composeOptions { composeOptions {
kotlinCompilerExtensionVersion '1.4.4' kotlinCompilerExtensionVersion = "1.5.11"
} }
packagingOptions { packagingOptions {
@ -89,42 +90,42 @@ android {
dependencies { dependencies {
// Android core // Android core
implementation 'androidx.core:core-ktx:1.9.0' implementation 'androidx.core:core-ktx:1.13.1'
implementation 'androidx.appcompat:appcompat:1.7.0-alpha02' implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.1' implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.2'
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.6.1" implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.8.2"
// Android Compose // Android Compose
implementation "androidx.compose.ui:ui:1.4.0" implementation "androidx.compose.ui:ui:1.6.8"
implementation "androidx.compose.ui:ui-util:1.4.0" implementation "androidx.compose.ui:ui-util:1.6.8"
implementation "androidx.compose.foundation:foundation:1.4.0" implementation "androidx.compose.foundation:foundation:1.6.8"
implementation "androidx.compose.material:material:1.4.0" implementation "androidx.compose.material:material:1.6.8"
implementation "androidx.compose.runtime:runtime-livedata:1.4.0" implementation "androidx.compose.runtime:runtime-livedata:1.6.8"
implementation "androidx.compose.ui:ui-tooling-preview:1.4.0" implementation "androidx.compose.ui:ui-tooling-preview:1.6.8"
debugImplementation "androidx.compose.ui:ui-tooling:1.4.0" debugImplementation "androidx.compose.ui:ui-tooling:1.6.8"
// Android Compose extension // Android Compose extension
implementation "androidx.constraintlayout:constraintlayout-compose:1.0.1" implementation "androidx.constraintlayout:constraintlayout-compose:1.0.1"
implementation 'androidx.activity:activity-compose:1.7.0' implementation 'androidx.activity:activity-compose:1.9.0'
implementation "androidx.paging:paging-compose:1.0.0-alpha18" implementation "androidx.paging:paging-compose:3.3.0"
// Material design // Material design
implementation 'com.google.android.material:material:1.8.0' implementation 'com.google.android.material:material:1.12.0'
implementation "androidx.compose.material:material-icons-core:1.4.0" implementation "androidx.compose.material:material-icons-core:1.6.8"
implementation "androidx.compose.material:material-icons-extended:1.4.0" implementation "androidx.compose.material:material-icons-extended:1.6.8"
// Injection // Injection
implementation 'androidx.hilt:hilt-navigation-compose:1.0.0' implementation 'androidx.hilt:hilt-navigation-compose:1.2.0'
implementation "com.google.dagger:hilt-android:2.43.2" implementation "com.google.dagger:hilt-android:2.51.1"
kapt "com.google.dagger:hilt-compiler:2.43.2" kapt "com.google.dagger:hilt-compiler:2.51.1"
// Accompanist // Accompanist
implementation "com.google.accompanist:accompanist-navigation-material:0.30.1" implementation "com.google.accompanist:accompanist-navigation-material:0.34.0"
implementation "com.google.accompanist:accompanist-systemuicontroller:0.30.1" implementation "com.google.accompanist:accompanist-systemuicontroller:0.34.0"
implementation "com.google.accompanist:accompanist-pager-indicators:0.30.1" implementation "com.google.accompanist:accompanist-pager-indicators:0.34.0"
implementation "com.google.accompanist:accompanist-drawablepainter:0.30.1" implementation "com.google.accompanist:accompanist-drawablepainter:0.34.0"
implementation "com.google.accompanist:accompanist-placeholder-material:0.30.1" implementation "com.google.accompanist:accompanist-placeholder-material:0.34.0"
implementation "com.google.accompanist:accompanist-swiperefresh:0.30.1" implementation "com.google.accompanist:accompanist-swiperefresh:0.34.0"
// Landscapist // Landscapist
implementation "com.github.skydoves:landscapist-glide:1.5.2" implementation "com.github.skydoves:landscapist-glide:1.5.2"
@ -134,30 +135,30 @@ dependencies {
implementation "org.burnoutcrew.composereorderable:reorderable:0.9.6" implementation "org.burnoutcrew.composereorderable:reorderable:0.9.6"
// Navigation // Navigation
implementation "androidx.navigation:navigation-compose:2.5.3" implementation "androidx.navigation:navigation-compose:2.7.7"
// Splash Screen support prior to Android 12 // Splash Screen support prior to Android 12
implementation "androidx.core:core-splashscreen:1.0.0" implementation "androidx.core:core-splashscreen:1.0.1"
// Google sign in. // Google sign in.
implementation "com.google.android.gms:play-services-auth:20.4.1" implementation "com.google.android.gms:play-services-auth:21.2.0"
// Firebase // Firebase
implementation platform('com.google.firebase:firebase-bom:31.3.0') implementation platform('com.google.firebase:firebase-bom:33.1.1')
implementation 'com.google.firebase:firebase-crashlytics' implementation 'com.google.firebase:firebase-crashlytics'
// RetroFit & Gson for webservice call // RetroFit & Gson for webservice call
implementation 'com.squareup.retrofit2:retrofit:2.9.0' implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0' implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
implementation 'com.google.code.gson:gson:2.9.0' implementation 'com.google.code.gson:gson:2.10.1'
// Logging Network Calls // Logging Network Calls
implementation "com.squareup.okhttp3:logging-interceptor:4.8.1" implementation "com.squareup.okhttp3:logging-interceptor:4.11.0"
// Room // Room
implementation "androidx.room:room-runtime:2.5.1" implementation "androidx.room:room-runtime:2.6.1"
implementation "androidx.room:room-ktx:2.5.1" implementation "androidx.room:room-ktx:2.6.1"
kapt "androidx.room:room-compiler:2.5.1" kapt "androidx.room:room-compiler:2.6.1"
} }
static def generateVersionCode() { static def generateVersionCode() {

View file

@ -6,15 +6,29 @@ import androidx.compose.animation.AnimatedVisibility
import androidx.compose.animation.fadeIn import androidx.compose.animation.fadeIn
import androidx.compose.animation.fadeOut import androidx.compose.animation.fadeOut
import androidx.compose.foundation.clickable import androidx.compose.foundation.clickable
import androidx.compose.foundation.layout.* import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.PaddingValues
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.lazy.LazyColumn import androidx.compose.foundation.lazy.LazyColumn
import androidx.compose.foundation.text.KeyboardActionScope import androidx.compose.foundation.text.KeyboardActionScope
import androidx.compose.foundation.text.KeyboardActions import androidx.compose.foundation.text.KeyboardActions
import androidx.compose.foundation.text.KeyboardOptions import androidx.compose.foundation.text.KeyboardOptions
import androidx.compose.material.* import androidx.compose.material.Icon
import androidx.compose.material.IconButton
import androidx.compose.material.MaterialTheme
import androidx.compose.material.Text
import androidx.compose.material.TextField
import androidx.compose.material.TextFieldDefaults
import androidx.compose.material.icons.Icons import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.Clear import androidx.compose.material.icons.filled.Clear
import androidx.compose.runtime.* import androidx.compose.runtime.Composable
import androidx.compose.runtime.Immutable
import androidx.compose.runtime.Stable
import androidx.compose.runtime.State
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.remember
import androidx.compose.ui.Alignment import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier import androidx.compose.ui.Modifier
import androidx.compose.ui.focus.FocusRequester import androidx.compose.ui.focus.FocusRequester
@ -26,7 +40,6 @@ import androidx.compose.ui.unit.max
import androidx.paging.PagingData import androidx.paging.PagingData
import androidx.paging.compose.LazyPagingItems import androidx.paging.compose.LazyPagingItems
import androidx.paging.compose.collectAsLazyPagingItems import androidx.paging.compose.collectAsLazyPagingItems
import androidx.paging.compose.items
import com.pixelized.biblib.model.search.FilterType import com.pixelized.biblib.model.search.FilterType
import com.pixelized.biblib.ui.composable.Handle import com.pixelized.biblib.ui.composable.Handle
import com.pixelized.biblib.ui.theme.BibLibTheme import com.pixelized.biblib.ui.theme.BibLibTheme
@ -132,15 +145,19 @@ private fun FilterPageContent(
modifier = Modifier.fillMaxSize(), modifier = Modifier.fillMaxSize(),
contentPadding = paddingValues, contentPadding = paddingValues,
) { ) {
items(items = filters, key = { it.filterId }) { items(
count = filters.itemCount,
key = { filters[it]?.filterId ?: -1 },
) {
val item = filters[it]
Text( Text(
modifier = Modifier modifier = Modifier
.clickable { it?.let { onFilter(it) } } .clickable { item?.let(onFilter) }
.fillMaxWidth() .fillMaxWidth()
.padding(all = MaterialTheme.bibLib.dimen.thumbnail.padding), .padding(all = MaterialTheme.bibLib.dimen.thumbnail.padding),
style = MaterialTheme.typography.body1, style = MaterialTheme.typography.body1,
color = MaterialTheme.colors.onSurface, color = MaterialTheme.colors.onSurface,
text = it?.filterLabel ?: "" text = item?.filterLabel ?: ""
) )
} }
} }

View file

@ -5,14 +5,10 @@ buildscript {
mavenCentral() mavenCentral()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:7.4.2' classpath 'com.android.tools.build:gradle:8.5.0'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.10' classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.23'
classpath "com.google.dagger:hilt-android-gradle-plugin:2.43.2" classpath "com.google.dagger:hilt-android-gradle-plugin:2.51"
classpath 'com.google.gms:google-services:4.3.15' classpath 'com.google.gms:google-services:4.4.2'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.4' classpath 'com.google.firebase:firebase-crashlytics-gradle:3.0.2'
} }
} }
task clean(type: Delete) {
delete rootProject.buildDir
}

View file

@ -19,3 +19,5 @@ android.useAndroidX=true
android.enableJetifier=false android.enableJetifier=false
# Kotlin code style for this project: "official" or "obsolete": # Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official kotlin.code.style=official
android.nonTransitiveRClass=false
android.nonFinalResIds=false

View file

@ -1,6 +1,6 @@
#Sat Oct 15 11:40:37 CEST 2022 #Sat Oct 15 11:40:37 CEST 2022
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME