2023-05-30 23:50:09 -04:00
|
|
|
// SPDX-FileCopyrightText: 2023 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2023-04-19 00:53:59 -04:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
plugins {
|
2023-10-11 22:11:53 -04:00
|
|
|
id("com.android.application") version "8.1.2" apply false
|
|
|
|
id("com.android.library") version "8.1.2" apply false
|
2023-05-04 04:27:27 -04:00
|
|
|
id("org.jetbrains.kotlin.android") version "1.8.21" apply false
|
2023-04-19 00:53:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.register("clean").configure {
|
|
|
|
delete(rootProject.buildDir)
|
|
|
|
}
|
2023-06-11 19:54:54 -04:00
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.6.0")
|
|
|
|
}
|
|
|
|
}
|