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