summaryrefslogtreecommitdiff
path: root/src/android/build.gradle.kts
diff options
context:
space:
mode:
Diffstat (limited to 'src/android/build.gradle.kts')
-rw-r--r--src/android/build.gradle.kts22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/android/build.gradle.kts b/src/android/build.gradle.kts
new file mode 100644
index 000000000..80f370c16
--- /dev/null
+++ b/src/android/build.gradle.kts
@@ -0,0 +1,22 @@
1// SPDX-FileCopyrightText: 2023 yuzu Emulator Project
2// SPDX-License-Identifier: GPL-3.0-or-later
3
4// Top-level build file where you can add configuration options common to all sub-projects/modules.
5plugins {
6 id("com.android.application") version "8.0.2" apply false
7 id("com.android.library") version "8.0.2" apply false
8 id("org.jetbrains.kotlin.android") version "1.8.21" apply false
9}
10
11tasks.register("clean").configure {
12 delete(rootProject.buildDir)
13}
14
15buildscript {
16 repositories {
17 google()
18 }
19 dependencies {
20 classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.6.0")
21 }
22}