Update app dependencies

This commit is contained in:
topjohnwu
2026-02-22 14:22:54 -08:00
parent ee25db0627
commit bb082e703c
2 changed files with 6 additions and 4 deletions

View File

@@ -47,9 +47,11 @@ internal fun Project.androidAppComponents(configure: Action<ApplicationAndroidCo
fun Project.setupCommon() {
android {
compileSdk {
version = release(36)
version = release(36) {
minorApiLevel = 1
}
}
buildToolsVersion = "36.0.0"
buildToolsVersion = "36.1.0"
ndkPath = "${androidComponents.sdkComponents.sdkDirectory.get().asFile}/ndk/magisk"
ndkVersion = "29.0.14206865"

View File

@@ -1,6 +1,6 @@
[versions]
kotlin = "2.3.0"
android = "9.0.0"
android = "9.0.1"
ksp = "2.3.4"
rikka = "1.3.0"
navigation = "2.9.7"
@@ -23,7 +23,7 @@ timber = { module = "com.jakewharton.timber:timber", version = "5.0.1" }
jgit = { module = "org.eclipse.jgit:org.eclipse.jgit", version = "7.1.0.202411261347-r" }
# AndroidX
activity = { module = "androidx.activity:activity", version = "1.12.3" }
activity = { module = "androidx.activity:activity", version = "1.12.4" }
appcompat = { module = "androidx.appcompat:appcompat", version = "1.7.1" }
core-ktx = { module = "androidx.core:core-ktx", version = "1.17.0" }
core-splashscreen = { module = "androidx.core:core-splashscreen", version = "1.2.0" }