Michael Bestas | dd2506a | 2023-07-20 20:53:02 +0300 | [diff] [blame] | 1 | /* |
| 2 | * SPDX-FileCopyrightText: 2022-2023 The LineageOS Project |
| 3 | * SPDX-License-Identifier: Apache-2.0 |
| 4 | */ |
| 5 | |
LuK1337 | 9c4638c | 2022-09-05 13:37:03 +0200 | [diff] [blame] | 6 | // Top-level build file where you can add configuration options common to all sub-projects/modules. |
| 7 | plugins { |
Sebastiano Barezzi | 423e6b8 | 2023-03-13 23:05:25 +0100 | [diff] [blame] | 8 | id("com.android.application") version "7.4.2" apply false |
| 9 | id("com.android.library") version "7.4.2" apply false |
LuK1337 | 9c4638c | 2022-09-05 13:37:03 +0200 | [diff] [blame] | 10 | id("org.jetbrains.kotlin.android") version "1.7.10" apply false |
| 11 | } |
| 12 | |
| 13 | tasks.register<Delete>("clean").configure { |
Sebastiano Barezzi | 413eca7 | 2023-10-04 19:35:14 +0200 | [diff] [blame^] | 14 | delete(rootProject.layout.buildDirectory) |
LuK1337 | 9c4638c | 2022-09-05 13:37:03 +0200 | [diff] [blame] | 15 | } |