Skip to content

Commit

Permalink
Upgrading deps. (#457)
Browse files Browse the repository at this point in the history
  • Loading branch information
dessalines committed Oct 4, 2023
1 parent f01bc1a commit c194722
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .woodpecker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ steps:
- prettier -c "*.md" "*.yml"

check_formatting:
image: cimg/android:2023.08
image: cimg/android:2023.09.1
commands:
- sudo chown -R circleci:circleci .
- ./gradlew lintKotlin
environment:
GRADLE_USER_HOME: ".gradle"

build_project:
image: cimg/android:2023.08
image: cimg/android:2023.09.1
commands:
- sudo chown -R circleci:circleci .
- ./gradlew assembleDebug
Expand Down
16 changes: 8 additions & 8 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ dependencies {
implementation "com.github.jeziellago:compose-markdown:0.3.5"
implementation "com.squareup.okhttp3:logging-interceptor:5.0.0-alpha.11"

implementation "androidx.navigation:navigation-compose:2.7.2"
implementation 'com.github.alorma:compose-settings-ui-m3:0.27.0'
implementation "androidx.navigation:navigation-compose:2.7.3"
implementation 'com.github.alorma:compose-settings-ui-m3:1.0.1'

// To use Kotlin annotation processing tool
ksp 'androidx.room:room-compiler:2.5.2'
Expand All @@ -92,16 +92,16 @@ dependencies {
implementation 'androidx.room:room-paging:2.5.2'

// LiveData
implementation "androidx.compose.runtime:runtime-livedata:1.5.1"
implementation "androidx.compose.runtime:runtime-livedata:1.5.2"
implementation "androidx.lifecycle:lifecycle-runtime-compose:2.6.2"

implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.9.10'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation "androidx.compose.ui:ui:1.5.1"
implementation 'androidx.compose.material3:material3:1.1.1'
implementation "androidx.compose.material:material-icons-extended:1.5.1"
implementation 'androidx.compose.material3:material3-window-size-class:1.1.1'
implementation "androidx.compose.ui:ui-tooling:1.5.1"
implementation "androidx.compose.ui:ui:1.5.2"
implementation 'androidx.compose.material3:material3:1.1.2'
implementation "androidx.compose.material:material-icons-extended:1.5.2"
implementation 'androidx.compose.material3:material3-window-size-class:1.1.2'
implementation "androidx.compose.ui:ui-tooling:1.5.2"
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"
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ buildscript {
}

plugins {
id 'com.android.application' version '8.1.1' apply false
id 'com.android.library' version '8.1.1' apply false
id 'com.android.application' version '8.1.2' apply false
id 'com.android.library' version '8.1.2' apply false
id 'org.jetbrains.kotlin.android' version '1.9.10' apply false
id 'org.jmailen.kotlinter' version "3.16.0" apply false
id 'com.google.devtools.ksp' version "1.9.10-1.0.13" apply false
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ kotlin.code.style=official
android.nonTransitiveRClass=true
org.gradle.unsafe.configuration-cache=true
android.nonFinalResIds=false
org.gradle.daemon=false

0 comments on commit c194722

Please sign in to comment.