build.gradle.kts 472 B

12345678910111213
  1. // SPDX-FileCopyrightText: 2023 yuzu Emulator Project
  2. // SPDX-License-Identifier: GPL-3.0-or-later
  3. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  4. plugins {
  5. id("com.android.application") version "8.0.2" apply false
  6. id("com.android.library") version "8.0.2" apply false
  7. id("org.jetbrains.kotlin.android") version "1.8.21" apply false
  8. }
  9. tasks.register("clean").configure {
  10. delete(rootProject.buildDir)
  11. }