kopia lustrzana https://github.com/rt-bishop/Look4Sat
66 wiersze
1.7 KiB
Groovy
66 wiersze
1.7 KiB
Groovy
/*
|
|
* Look4Sat. Amateur radio and weather satellite tracker and passes predictor for Android.
|
|
* Copyright (C) 2019, 2020 Arty Bishop (bishop.arty@gmail.com)
|
|
*
|
|
* 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 2 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, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.6.1'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.70"
|
|
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.2.1"
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|
|
|
|
ext {
|
|
material = '1.2.0-alpha05'
|
|
appCompat = '1.1.0'
|
|
supportLib = '1.0.0'
|
|
constraintLayout = '1.1.3'
|
|
|
|
ktx = '1.2.0'
|
|
preference = '1.1.0'
|
|
|
|
navigation = '2.2.1'
|
|
lifecycle = '2.2.0'
|
|
|
|
room = '2.2.4'
|
|
|
|
retrofit = '2.7.1'
|
|
|
|
dagger = '2.26'
|
|
|
|
predict4java = '1.3.1'
|
|
}
|