Skip to content

Commit dd43dbb

Browse files
authored
Merge pull request #622 from NordicSemiconductor/dependencies
Dependencies updated
2 parents cf2772c + 34b0083 commit dd43dbb

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed

ble-livedata/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ dependencies {
3535
api project(':ble')
3636

3737
// https://developer.android.com/jetpack/androidx/releases/lifecycle
38-
api 'androidx.lifecycle:lifecycle-livedata:2.8.7'
38+
api 'androidx.lifecycle:lifecycle-livedata:2.9.1'
3939
}
4040

4141
// === Maven Central configuration ===

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
// https://kotlinlang.org/docs/releases.html#release-details
3-
ext.kotlin_version = '2.1.10'
3+
ext.kotlin_version = '2.1.21'
44
// https://plugins.gradle.org/plugin/io.github.gradle-nexus.publish-plugin
55
ext.gradle_nexus_publish_plugin = '2.0.0'
66

@@ -11,7 +11,7 @@ buildscript {
1111
maven { url "https://plugins.gradle.org/m2/" }
1212
}
1313
dependencies {
14-
classpath 'com.android.tools.build:gradle:8.8.2'
14+
classpath 'com.android.tools.build:gradle:8.10.1'
1515
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1616
classpath "org.jetbrains.kotlin:compose-compiler-gradle-plugin:$kotlin_version"
1717
classpath "com.google.dagger:hilt-android-gradle-plugin:2.54"

examples/ble-gatt-client/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ android {
3939
}
4040

4141
dependencies {
42-
implementation 'androidx.core:core-ktx:1.15.0'
43-
implementation 'androidx.appcompat:appcompat:1.7.0'
42+
implementation 'androidx.core:core-ktx:1.16.0'
43+
implementation 'androidx.appcompat:appcompat:1.7.1'
4444
implementation 'androidx.constraintlayout:constraintlayout:2.2.1'
4545

4646
implementation project(':ble-ktx')

examples/ble-gatt-server/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ android {
3939
}
4040

4141
dependencies {
42-
implementation 'androidx.core:core-ktx:1.15.0'
43-
implementation 'androidx.appcompat:appcompat:1.7.0'
42+
implementation 'androidx.core:core-ktx:1.16.0'
43+
implementation 'androidx.appcompat:appcompat:1.7.1'
4444
implementation 'androidx.constraintlayout:constraintlayout:2.2.1'
4545

4646
implementation project(':ble-ktx')

examples/trivia/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ dependencies {
5353
implementation project(path: ':ble-ktx')
5454

5555
// Dagger and Hilt
56-
implementation 'com.google.dagger:hilt-android:2.54'
57-
kapt 'com.google.dagger:hilt-compiler:2.54'
56+
implementation 'com.google.dagger:hilt-android:2.56.2'
57+
kapt 'com.google.dagger:hilt-compiler:2.56.2'
5858
implementation 'androidx.hilt:hilt-navigation-compose:1.2.0'
5959
kapt 'androidx.hilt:hilt-compiler:1.2.0'
6060

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

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

7070
// Text, color, Surface
7171
implementation "androidx.compose.material3:material3"
@@ -77,8 +77,8 @@ dependencies {
7777
implementation 'androidx.compose.ui:ui-tooling-preview'
7878

7979
// Retrofit
80-
implementation 'com.squareup.retrofit2:retrofit:2.11.0'
81-
implementation 'com.squareup.retrofit2:converter-moshi:2.11.0'
80+
implementation 'com.squareup.retrofit2:retrofit:3.0.0'
81+
implementation 'com.squareup.retrofit2:converter-moshi:3.0.0'
8282
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
8383
// https://square.github.io/okhttp/changelog/
8484
implementation 'com.squareup.okhttp3:logging-interceptor:4.12.0'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Tue Aug 27 10:46:52 CEST 2024
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

test/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,20 +57,20 @@ dependencies {
5757
implementation 'com.github.jeziellago:compose-markdown:0.4.1'
5858

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

6262
// Text, Color, Surface
6363
implementation 'androidx.compose.material3:material3'
6464
implementation 'androidx.activity:activity-compose:1.10.1'
65-
implementation 'androidx.lifecycle:lifecycle-runtime-compose:2.8.7'
65+
implementation 'androidx.lifecycle:lifecycle-runtime-compose:2.9.1'
6666

6767
// Preview
6868
debugImplementation "androidx.compose.ui:ui-tooling"
6969
implementation "androidx.compose.ui:ui-tooling-preview"
7070

7171
// Dagger and Hilt
72-
implementation 'com.google.dagger:hilt-android:2.54'
73-
kapt 'com.google.dagger:hilt-compiler:2.54'
72+
implementation 'com.google.dagger:hilt-android:2.56.2'
73+
kapt 'com.google.dagger:hilt-compiler:2.56.2'
7474
implementation 'androidx.hilt:hilt-navigation-compose:1.2.0'
7575
kapt 'androidx.hilt:hilt-compiler:1.2.0'
7676

0 commit comments

Comments
 (0)