]> gitweb.stoutner.com Git - PrivacyCell.git/blob - build.gradle
Release 1.11.
[PrivacyCell.git] / build.gradle
1 /* SPDX-License-Identifier: GPL-3.0-or-later
2  * SPDX-FileCopyrightText: 2021-2025 Soren Stoutner <soren@stoutner.com>
3  *
4  * This file is part of Privacy Cell <https://www.stoutner.com/privacy-cell/>.
5  *
6  * This program is free software: you can redistribute it and/or modify it under
7  * the terms of the GNU General Public License as published by the Free Software
8  * Foundation, either version 3 of the License, or (at your option) any later
9  * version.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
14  * details.
15  *
16  * You should have received a copy of the GNU General Public License along with
17  * this program.  If not, see <https://www.gnu.org/licenses/>.
18  */
19
20 // Top-level build file where you can add configuration options common to all sub-projects/modules.
21 buildscript {
22     repositories {
23         google()
24         mavenCentral()
25     }
26
27     dependencies {
28         classpath 'com.android.tools.build:gradle:8.9.2'
29         classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.0"
30
31         // NOTE: Do not place your application dependencies here; they belong
32         // in the individual module build.gradle files
33     }
34 }
35
36 tasks.register('clean', Delete) {
37     delete rootProject.layout.buildDirectory
38 }