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.kts13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/android/build.gradle.kts b/src/android/build.gradle.kts
new file mode 100644
index 000000000..e19e8ce58
--- /dev/null
+++ b/src/android/build.gradle.kts
@@ -0,0 +1,13 @@
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}