You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
860 B
25 lines
860 B
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
plugins {
|
|
id("com.android.application") version "8.13.1" apply false
|
|
id("com.android.library") version "8.13.1" apply false
|
|
id("org.jetbrains.kotlin.android") version "2.2.21" apply false
|
|
id("org.jetbrains.kotlin.plugin.parcelize") version "2.2.21" apply false
|
|
kotlin("plugin.serialization") version "1.9.20" apply false
|
|
id("org.jlleitschuh.gradle.ktlint") version "14.0.1" apply false
|
|
id("com.github.triplet.play") version "3.12.2" apply false
|
|
id("idea")
|
|
}
|
|
|
|
tasks.register("clean").configure {
|
|
delete(rootProject.layout.buildDirectory)
|
|
}
|
|
|
|
// Do not index dependecies on Android Studio
|
|
idea {
|
|
module {
|
|
excludeDirs.add(file("$rootDir/.cache"))
|
|
excludeDirs.add(file("$rootDir/externals"))
|
|
}
|
|
}
|