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