Files
eden/src/android/build.gradle.kts
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
765 B
Kotlin
Raw Normal View History

2025-06-15 22:30:12 +00:00
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
// SPDX-License-Identifier: GPL-3.0-or-later
2023-05-30 20:50:09 -07:00
// 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 {
2025-06-15 22:30:12 +00:00
id("com.android.application") version "8.10.1" apply false
2025-03-31 02:45:15 +02:00
id("com.android.library") version "8.1.4" apply false
2025-06-15 22:30:12 +00:00
id("org.jetbrains.kotlin.android") version "2.0.0-RC1" apply false
}
tasks.register("clean").configure {
2025-06-15 22:30:12 +00:00
delete(rootProject.layout.buildDirectory)
}
buildscript {
repositories {
google()
}
dependencies {
2025-03-31 02:45:15 +02:00
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.8.9")
}
}