mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-24 14:55:46 +00:00
23 lines
676 B
Kotlin
23 lines
676 B
Kotlin
// SPDX-FileCopyrightText: 2023 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
plugins {
|
|
id("com.android.application") version "8.9.1" apply false
|
|
id("com.android.library") version "8.1.4" apply false
|
|
id("org.jetbrains.kotlin.android") version "1.9.20" apply false
|
|
}
|
|
|
|
tasks.register("clean").configure {
|
|
delete(rootProject.buildDir)
|
|
}
|
|
|
|
buildscript {
|
|
val agp_version by extra("8.9.1")
|
|
repositories {
|
|
google()
|
|
}
|
|
dependencies {
|
|
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.8.9")
|
|
}
|
|
}
|