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
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.7'
api 'androidx.lifecycle:lifecycle-livedata:2.9.1'
}

// === Maven Central configuration ===
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
// https://kotlinlang.org/docs/releases.html#release-details
ext.kotlin_version = '2.1.10'
ext.kotlin_version = '2.1.21'
// https://plugins.gradle.org/plugin/io.github.gradle-nexus.publish-plugin
ext.gradle_nexus_publish_plugin = '2.0.0'

Expand All @@ -11,7 +11,7 @@ buildscript {
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'com.android.tools.build:gradle:8.8.2'
classpath 'com.android.tools.build:gradle:8.10.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.54"
Expand Down
4 changes: 2 additions & 2 deletions examples/ble-gatt-client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ android {
}

dependencies {
implementation 'androidx.core:core-ktx:1.15.0'
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'androidx.core:core-ktx:1.16.0'
implementation 'androidx.appcompat:appcompat:1.7.1'
implementation 'androidx.constraintlayout:constraintlayout:2.2.1'

implementation project(':ble-ktx')
Expand Down
4 changes: 2 additions & 2 deletions examples/ble-gatt-server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ android {
}

dependencies {
implementation 'androidx.core:core-ktx:1.15.0'
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'androidx.core:core-ktx:1.16.0'
implementation 'androidx.appcompat:appcompat:1.7.1'
implementation 'androidx.constraintlayout:constraintlayout:2.2.1'

implementation project(':ble-ktx')
Expand Down
10 changes: 5 additions & 5 deletions examples/trivia/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ dependencies {
implementation project(path: ':ble-ktx')

// Dagger and Hilt
implementation 'com.google.dagger:hilt-android:2.54'
kapt 'com.google.dagger:hilt-compiler:2.54'
implementation 'com.google.dagger:hilt-android:2.56.2'
kapt 'com.google.dagger:hilt-compiler:2.56.2'
implementation 'androidx.hilt:hilt-navigation-compose:1.2.0'
kapt 'androidx.hilt:hilt-compiler:1.2.0'

Expand All @@ -65,7 +65,7 @@ dependencies {
implementation 'no.nordicsemi.android.common:navigation:2.4.0'

// Jetpack Compose bom
implementation platform('androidx.compose:compose-bom:2025.02.00')
implementation platform('androidx.compose:compose-bom:2025.06.00')

// Text, color, Surface
implementation "androidx.compose.material3:material3"
Expand All @@ -77,8 +77,8 @@ dependencies {
implementation 'androidx.compose.ui:ui-tooling-preview'

// Retrofit
implementation 'com.squareup.retrofit2:retrofit:2.11.0'
implementation 'com.squareup.retrofit2:converter-moshi:2.11.0'
implementation 'com.squareup.retrofit2:retrofit:3.0.0'
implementation 'com.squareup.retrofit2:converter-moshi:3.0.0'
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
// https://square.github.io/okhttp/changelog/
implementation 'com.squareup.okhttp3:logging-interceptor:4.12.0'
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Tue Aug 27 10:46:52 CEST 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
8 changes: 4 additions & 4 deletions test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -57,20 +57,20 @@ dependencies {
implementation 'com.github.jeziellago:compose-markdown:0.4.1'

// Jetpack Compose bom
implementation platform('androidx.compose:compose-bom:2025.02.00')
implementation platform('androidx.compose:compose-bom:2025.06.00')

// Text, Color, Surface
implementation 'androidx.compose.material3:material3'
implementation 'androidx.activity:activity-compose:1.10.1'
implementation 'androidx.lifecycle:lifecycle-runtime-compose:2.8.7'
implementation 'androidx.lifecycle:lifecycle-runtime-compose:2.9.1'

// Preview
debugImplementation "androidx.compose.ui:ui-tooling"
implementation "androidx.compose.ui:ui-tooling-preview"

// Dagger and Hilt
implementation 'com.google.dagger:hilt-android:2.54'
kapt 'com.google.dagger:hilt-compiler:2.54'
implementation 'com.google.dagger:hilt-android:2.56.2'
kapt 'com.google.dagger:hilt-compiler:2.56.2'
implementation 'androidx.hilt:hilt-navigation-compose:1.2.0'
kapt 'androidx.hilt:hilt-compiler:1.2.0'

Expand Down