abouttreesummaryrefslogcommitdiff
path: root/build.gradle.kts
diff options
context:
space:
mode:
authorJules Aguillon2025-12-22 01:27:07 +0100
committerGitHub2025-12-22 01:27:07 +0100
commitb40be68773939d3d3b55a819cdfe1d9e9a60bc4e (patch)
treea556e151e1ebabe2a066f89867d1e26333da7f61 /build.gradle.kts
parent258215f26c52b55b5760b707dbd0a749d418ce58 (diff)
downloadunexpected-keyboard-b40be68773939d3d3b55a819cdfe1d9e9a60bc4e.tar.gz
unexpected-keyboard-b40be68773939d3d3b55a819cdfe1d9e9a60bc4e.zip
Fix various linting issues (#1146)
Diffstat (limited to 'build.gradle.kts')
-rw-r--r--build.gradle.kts7
1 files changed, 4 insertions, 3 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
index d357ed2..912409b 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -2,12 +2,13 @@ import com.android.build.gradle.internal.api.BaseVariantOutputImpl
import java.io.FileOutputStream
plugins {
- id("com.android.application") version "8.13.0"
+ id("com.android.application") version "8.13.2"
}
dependencies {
- implementation("androidx.window:window-java:1.3.0")
- implementation("androidx.core:core:1.16.0")
+ // Following versions of androidx.window require sdk version 23
+ implementation("androidx.window:window-java:1.4.0")
+ implementation("androidx.core:core:1.16.0") // Version 1.17.0 available with sdk 36
testImplementation("junit:junit:4.13.2")
}