Upgrading deps. (#358)

This commit is contained in:
Dessalines 2023-08-23 11:04:21 -04:00 committed by GitHub
parent d1868b46ab
commit 2b9233ff4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 11 deletions

View File

@ -7,7 +7,7 @@ variables:
steps:
check_formatting:
image: cimg/android:2023.05
image: cimg/android:2023.08
commands:
- sudo chown -R circleci:circleci .
- ./gradlew lintKotlin
@ -19,7 +19,7 @@ steps:
- prettier -c "*.md" "*.yml"
build_project:
image: cimg/android:2023.05
image: cimg/android:2023.08
commands:
- sudo chown -R circleci:circleci .
- ./gradlew assembleDebug

View File

@ -5,12 +5,12 @@ plugins {
}
android {
compileSdk 33
compileSdk 34
defaultConfig {
applicationId "com.dessalines.thumbkey"
minSdk 21
targetSdk 33
targetSdkVersion 34
versionCode 28
versionName "1.11.0"
@ -68,7 +68,7 @@ android {
}
dependencies {
implementation "androidx.navigation:navigation-compose:2.6.0"
implementation "androidx.navigation:navigation-compose:2.7.0"
implementation 'com.github.alorma:compose-settings-ui-m3:0.27.0'
// To use Kotlin annotation processing tool
@ -87,16 +87,16 @@ dependencies {
implementation 'androidx.room:room-paging:2.5.2'
// LiveData
implementation "androidx.compose.runtime:runtime-livedata:1.4.3"
implementation "androidx.compose.runtime:runtime-livedata:1.5.0"
implementation "androidx.lifecycle:lifecycle-runtime-compose:2.6.1"
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.9.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation "androidx.compose.ui:ui:1.4.3"
implementation "androidx.compose.ui:ui:1.5.0"
implementation 'androidx.compose.material3:material3:1.1.1'
implementation "androidx.compose.material:material-icons-extended:1.4.3"
implementation "androidx.compose.material:material-icons-extended:1.5.0"
implementation 'androidx.compose.material3:material3-window-size-class:1.1.1'
implementation "androidx.compose.ui:ui-tooling:1.4.3"
implementation "androidx.compose.ui:ui-tooling:1.5.0"
implementation "androidx.activity:activity-compose:1.7.2"
implementation "com.louiscad.splitties:splitties-systemservices:3.0.0"
implementation "com.louiscad.splitties:splitties-views:3.0.0"

View File

@ -7,8 +7,8 @@ buildscript {
}
plugins {
id 'com.android.application' version '8.1.0' apply false
id 'com.android.library' version '8.1.0' apply false
id 'com.android.application' version '8.1.1' apply false
id 'com.android.library' version '8.1.1' apply false
id 'org.jetbrains.kotlin.android' version '1.9.0' apply false
id 'org.jmailen.kotlinter' version "3.15.0" apply false
id 'com.google.devtools.ksp' version "1.9.0-1.0.12" apply false