pineapple-src/src/android/build.gradle.kts

23 lines
638 B
Plaintext
Raw Normal View History

2023-05-31 06:37:04 +00: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 {
2023-10-13 21:14:14 +00:00
id("com.android.application") version "8.1.2" apply false
id("com.android.library") version "8.1.2" apply false
2024-01-01 22:05:00 +00:00
id("org.jetbrains.kotlin.android") version "1.9.20" apply false
2023-05-31 06:37:04 +00:00
}
tasks.register("clean").configure {
delete(rootProject.buildDir)
}
2023-06-14 21:27:30 +00:00
buildscript {
repositories {
google()
}
dependencies {
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.6.0")
}
}