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.

24 lines
676 B
Kotlin
Raw Normal View History

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-03-31 02:45:15 +02:00
id("com.android.application") version "8.9.1" apply false
id("com.android.library") version "8.1.4" apply false
2023-12-23 19:01:22 -05:00
id("org.jetbrains.kotlin.android") version "1.9.20" apply false
}
tasks.register("clean").configure {
delete(rootProject.buildDir)
}
buildscript {
2025-03-31 02:45:15 +02:00
val agp_version by extra("8.9.1")
repositories {
google()
}
dependencies {
2025-03-31 02:45:15 +02:00
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.8.9")
}
}