Skip to content

Commit a0842c6

Browse files
chore: bump android dependencies and AGP
1 parent 354c297 commit a0842c6

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

app/build.gradle.kts

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
import org.jlleitschuh.gradle.ktlint.reporter.ReporterType
22

33
plugins {
4-
id("com.android.application") version "8.11.0"
5-
id("org.jetbrains.kotlin.android") version "2.1.10"
6-
id("org.jetbrains.kotlin.plugin.compose") version "2.1.10"
7-
id("org.jetbrains.kotlin.plugin.serialization") version "2.1.10"
8-
id("com.google.protobuf") version "0.9.4"
9-
id("org.jlleitschuh.gradle.ktlint") version "12.1.2"
4+
id("com.android.application") version "8.11.1"
5+
id("org.jetbrains.kotlin.android") version "2.2.10"
6+
id("org.jetbrains.kotlin.plugin.compose") version "2.2.10"
7+
id("org.jetbrains.kotlin.plugin.serialization") version "2.2.10"
8+
id("com.google.protobuf") version "0.9.5"
9+
id("org.jlleitschuh.gradle.ktlint") version "13.1.0"
1010
}
1111

1212
// This is the version of the app that is displayed in the UI on the drawer.
1313
val variantName = "Version 0.1.0/Esplora"
1414

1515
android {
1616
namespace = "org.bitcoindevkit.devkitwallet"
17-
compileSdk = 35
17+
compileSdk = 36
1818

1919
buildFeatures {
2020
viewBinding = true
@@ -25,7 +25,7 @@ android {
2525
defaultConfig {
2626
applicationId = "org.bitcoindevkit.devkitwallet"
2727
minSdk = 26
28-
targetSdk = 35
28+
targetSdk = 36
2929
versionCode = 1
3030
versionName = "v0.1.0"
3131
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
@@ -51,26 +51,26 @@ android {
5151

5252
dependencies {
5353
// Basic android dependencies
54-
implementation("org.jetbrains.kotlin:kotlin-stdlib:2.2.0")
55-
implementation("androidx.core:core-ktx:1.16.0")
54+
implementation("org.jetbrains.kotlin:kotlin-stdlib:2.2.10")
55+
implementation("androidx.core:core-ktx:1.17.0")
5656
implementation("com.google.android.material:material:1.12.0")
5757
implementation("androidx.datastore:datastore:1.1.7")
58-
implementation("com.google.protobuf:protobuf-javalite:4.31.1")
58+
implementation("com.google.protobuf:protobuf-javalite:4.32.0")
5959
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.9.0")
6060
implementation("androidx.core:core-splashscreen:1.0.1")
6161

6262
// Jetpack Compose
6363
// Adding the Bill of Materials synchronizes dependencies in the androidx.compose namespace
6464
// You can remove the library version in your dependency declarations
65-
implementation(platform("androidx.compose:compose-bom:2025.07.00"))
65+
implementation(platform("androidx.compose:compose-bom:2025.08.00"))
6666
implementation("androidx.compose.animation:animation")
6767
implementation("androidx.compose.ui:ui-tooling")
6868
implementation("androidx.compose.ui:ui")
6969
implementation("androidx.compose.material3:material3")
7070
implementation("androidx.activity:activity-compose")
7171
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.9.2")
7272
implementation("androidx.constraintlayout:constraintlayout-compose:1.1.1")
73-
implementation("androidx.navigation:navigation-compose:2.9.2")
73+
implementation("androidx.navigation:navigation-compose:2.9.3")
7474
implementation("com.google.accompanist:accompanist-systemuicontroller:0.36.0")
7575

7676
// Icons
@@ -88,8 +88,8 @@ dependencies {
8888

8989
// Tests
9090
testImplementation("junit:junit:4.13.2")
91-
androidTestImplementation("androidx.test.ext:junit:1.2.1")
92-
androidTestImplementation("androidx.test.espresso:espresso-core:3.6.1")
91+
androidTestImplementation("androidx.test.ext:junit:1.3.0")
92+
androidTestImplementation("androidx.test.espresso:espresso-core:3.7.0")
9393
}
9494

9595
protobuf {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)