Skip to content

Commit

Permalink
Upgrading deps. (#358)
Browse files Browse the repository at this point in the history
  • Loading branch information
dessalines authored Aug 23, 2023
1 parent d1868b4 commit 2b9233f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .woodpecker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
14 changes: 7 additions & 7 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down Expand Up @@ -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
Expand All @@ -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"
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.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
Expand Down

0 comments on commit 2b9233f

Please sign in to comment.