blob: 721a78154622a84a370237047a4103464c602d5c [file] [log] [blame]
Michael Bestasdd2506a2023-07-20 20:53:02 +03001/*
2 * SPDX-FileCopyrightText: 2022-2023 The LineageOS Project
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
LuK13379c4638c2022-09-05 13:37:03 +02006// Top-level build file where you can add configuration options common to all sub-projects/modules.
7plugins {
Sebastiano Barezzi4fa30482024-01-17 23:19:18 +01008 id("com.android.application") version "8.2.1" apply false
9 id("com.android.library") version "8.2.1" apply false
LuK13379c4638c2022-09-05 13:37:03 +020010 id("org.jetbrains.kotlin.android") version "1.7.10" apply false
11}
12
13tasks.register<Delete>("clean").configure {
Sebastiano Barezzi413eca72023-10-04 19:35:14 +020014 delete(rootProject.layout.buildDirectory)
LuK13379c4638c2022-09-05 13:37:03 +020015}