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