TinyWeatherForecastGermanyM.../build.gradle

44 lines
1.1 KiB
Groovy
Raw Permalink Normal View History

2020-06-07 14:27:15 +02:00
/**
This file is part of TinyWeatherForecastGermany.
2020-06-07 14:27:15 +02:00
2022-12-03 18:38:54 +01:00
Copyright (c) 2020, 2021, 2022 Pawel Dube
2020-06-07 14:27:15 +02:00
This program 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.
This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
**/
buildscript {
repositories {
google()
mavenCentral()
2020-07-05 08:54:12 +02:00
}
2020-06-07 14:27:15 +02:00
dependencies {
2024-04-24 22:11:52 +02:00
classpath 'com.android.tools.build:gradle:7.2.0'
// NOTE: Do not place your application dependenxcies here; they belong
2020-06-07 14:27:15 +02:00
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
mavenCentral()
2020-06-07 14:27:15 +02:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}