-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle.kts
28 lines (27 loc) · 1.23 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
* Gauge/Gauge
* build.gradle.kts Copyrighted by Yamin Siahmargooei at 2023/10/24
* build.gradle.kts Last modified copyright at 2023/10/24
* This file is part of Gauge/Gauge.
* Copyright (C) 2023 Yamin Siahmargooei
*
* Gauge/Gauge is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Gauge/Gauge is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Gauge. If not, see <https://www.gnu.org/licenses/>.
*/
plugins {
id("com.android.application") version "8.6.1" apply false
id("com.android.library") version "8.6.1" apply false
id("org.jetbrains.kotlin.android") version "2.0.20" apply false
id("com.vanniktech.maven.publish") version "0.29.0"
id("org.jetbrains.kotlin.plugin.compose") version "2.0.20" apply false
}