diff options
Diffstat (limited to 'src/android/build.gradle.kts')
-rw-r--r-- | src/android/build.gradle.kts | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/android/build.gradle.kts b/src/android/build.gradle.kts index 88b32aaab..b77906ed6 100644 --- a/src/android/build.gradle.kts +++ b/src/android/build.gradle.kts @@ -1,12 +1,11 @@ // SPDX-FileCopyrightText: 2023 yuzu Emulator Project -// SPDX-FileCopyrightText: 2025 citron Emulator Project // SPDX-License-Identifier: GPL-3.0-or-later // Top-level build file where you can add configuration options common to all sub-projects/modules. plugins { - id("com.android.application") version "8.8.1" apply false - id("com.android.library") version "8.8.1" apply false - id("org.jetbrains.kotlin.android") version "2.1.20-RC" apply false + id("com.android.application") version "8.1.2" apply false + id("com.android.library") version "8.1.2" apply false + id("org.jetbrains.kotlin.android") version "1.9.20" apply false } tasks.register("clean").configure { @@ -18,6 +17,6 @@ buildscript { google() } dependencies { - classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.8.7") + classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.6.0") } } |