build.gradle.kts 638 B

12345678910111213141516171819202122
  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.1.2" apply false
  6. id("com.android.library") version "8.1.2" apply false
  7. id("org.jetbrains.kotlin.android") version "1.9.20" apply false
  8. }
  9. tasks.register("clean").configure {
  10. delete(rootProject.buildDir)
  11. }
  12. buildscript {
  13. repositories {
  14. google()
  15. }
  16. dependencies {
  17. classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.6.0")
  18. }
  19. }