Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Dependencies updated
  • Loading branch information
philips77 committed Sep 29, 2024
commit 034ca342fbdc1a0fce60c919e2676b653538329c
2 changes: 1 addition & 1 deletion ble-ktx/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ android {

dependencies {
api project(':ble')
api 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.1'
api 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0'
}

// === Maven Central configuration ===
Expand Down
2 changes: 1 addition & 1 deletion ble-livedata/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dependencies {
api project(':ble')

// https://developer.android.com/jetpack/androidx/releases/lifecycle
api 'androidx.lifecycle:lifecycle-livedata:2.8.5'
api 'androidx.lifecycle:lifecycle-livedata:2.8.6'
}

// === Maven Central configuration ===
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildscript {
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'com.android.tools.build:gradle:8.6.0'
classpath 'com.android.tools.build:gradle:8.6.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:compose-compiler-gradle-plugin:$kotlin_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:2.52"
Expand Down
10 changes: 5 additions & 5 deletions examples/trivia/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ dependencies {
implementation 'no.nordicsemi.android.common:navigation:2.1.0'

// Jetpack Compose bom
implementation platform('androidx.compose:compose-bom:2024.09.01')
implementation platform('androidx.compose:compose-bom:2024.09.02')

// Text, color, Surface
implementation "androidx.compose.material3:material3"
Expand All @@ -79,13 +79,13 @@ dependencies {
// Retrofit
implementation 'com.squareup.retrofit2:retrofit:2.11.0'
implementation 'com.squareup.retrofit2:converter-moshi:2.11.0'
implementation 'com.squareup.okhttp3:okhttp:4.10.0'
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
// https://square.github.io/okhttp/changelog/
implementation 'com.squareup.okhttp3:logging-interceptor:4.10.0'
implementation 'com.squareup.okhttp3:logging-interceptor:4.12.0'

// parse JSON
implementation'com.squareup.moshi:moshi-kotlin:1.14.0'
implementation 'com.squareup.moshi:moshi-kotlin:1.15.1'
// Note: Switching to KSP doesn't work with hilt 2.47 and 2.48:
// https://github.com/google/dagger/issues/3965
kapt 'com.squareup.moshi:moshi-kotlin-codegen:1.14.0'
kapt 'com.squareup.moshi:moshi-kotlin-codegen:1.15.1'
}
4 changes: 2 additions & 2 deletions test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ dependencies {
implementation 'com.github.jeziellago:compose-markdown:0.4.1'

// Jetpack Compose bom
implementation platform('androidx.compose:compose-bom:2024.09.01')
implementation platform('androidx.compose:compose-bom:2024.09.02')

// Text, Color, Surface
implementation 'androidx.compose.material3:material3'
implementation 'androidx.activity:activity-compose:1.9.2'
implementation "androidx.lifecycle:lifecycle-runtime-compose:2.8.5"
implementation 'androidx.lifecycle:lifecycle-runtime-compose:2.8.6'

// Preview
debugImplementation "androidx.compose.ui:ui-tooling"
Expand Down