diff options
| author | Jules Aguillon | 2025-12-22 01:27:07 +0100 |
|---|---|---|
| committer | GitHub | 2025-12-22 01:27:07 +0100 |
| commit | b40be68773939d3d3b55a819cdfe1d9e9a60bc4e (patch) | |
| tree | a556e151e1ebabe2a066f89867d1e26333da7f61 /build.gradle.kts | |
| parent | 258215f26c52b55b5760b707dbd0a749d418ce58 (diff) | |
| download | unexpected-keyboard-b40be68773939d3d3b55a819cdfe1d9e9a60bc4e.tar.gz unexpected-keyboard-b40be68773939d3d3b55a819cdfe1d9e9a60bc4e.zip | |
Fix various linting issues (#1146)
Diffstat (limited to 'build.gradle.kts')
| -rw-r--r-- | build.gradle.kts | 7 |
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") } |
