2023-05-31 05:50:09 +02:00
|
|
|
// SPDX-FileCopyrightText: 2023 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2023-04-19 06:53:59 +02:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
plugins {
|
2023-05-29 07:18:31 +02:00
|
|
|
id("com.android.application") version "8.0.2" apply false
|
|
|
|
id("com.android.library") version "8.0.2" apply false
|
2023-05-04 10:27:27 +02:00
|
|
|
id("org.jetbrains.kotlin.android") version "1.8.21" apply false
|
2023-04-19 06:53:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.register("clean").configure {
|
|
|
|
delete(rootProject.buildDir)
|
|
|
|
}
|