kopia lustrzana https://github.com/rt-bishop/Look4Sat
72 wiersze
1.8 KiB
Groovy
72 wiersze
1.8 KiB
Groovy
/*
|
|
* LookingSat. Amateur radio & weather satellite tracker and passes calculator.
|
|
* Copyright (C) 2019 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.5.3"
|
|
classpath "com.google.android.gms:oss-licenses-plugin:0.10.0"
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.61"
|
|
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.1.0"
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|
|
|
|
ext {
|
|
material = '1.2.0-alpha03'
|
|
supportLib = '1.0.0'
|
|
constraintLayout = '1.1.3'
|
|
|
|
ktx = '1.1.0'
|
|
preference = '1.1.0'
|
|
|
|
navigation = '2.1.0'
|
|
lifecycle = '2.2.0-rc03'
|
|
|
|
room = '2.2.3'
|
|
|
|
retrofit = '2.6.2'
|
|
|
|
dagger = '2.25.2'
|
|
|
|
predict4java = '1.3.1'
|
|
|
|
google_play = '17.0.0'
|
|
|
|
junit = "4.12"
|
|
runner = '1.1.1'
|
|
espresso = '3.2.0'
|
|
}
|