kopia lustrzana https://github.com/rt-bishop/Look4Sat
94 wiersze
3.1 KiB
Groovy
94 wiersze
3.1 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.
|
|
*/
|
|
|
|
plugins {
|
|
id "com.android.application"
|
|
id "kotlin-android"
|
|
id "kotlin-kapt"
|
|
id "kotlin-android-extensions"
|
|
id "dagger.hilt.android.plugin"
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 30
|
|
buildToolsVersion "30.0.2"
|
|
|
|
defaultConfig {
|
|
applicationId "com.rtbishop.look4sat"
|
|
minSdkVersion 21
|
|
targetSdkVersion 30
|
|
versionCode 18
|
|
versionName "1.4.8"
|
|
resConfigs "en", "ru"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
postprocessing {
|
|
removeUnusedCode true
|
|
removeUnusedResources true
|
|
obfuscate false
|
|
optimizeCode true
|
|
}
|
|
}
|
|
}
|
|
|
|
configurations {
|
|
all {
|
|
exclude module: "commons-logging"
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
buildFeatures {
|
|
viewBinding = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation "com.google.android.material:material:$material_version"
|
|
implementation "androidx.constraintlayout:constraintlayout:$constraint_layout_version"
|
|
implementation "androidx.navigation:navigation-fragment-ktx:$navigation_version"
|
|
implementation "androidx.navigation:navigation-ui-ktx:$navigation_version"
|
|
implementation "androidx.preference:preference-ktx:$preference_version"
|
|
implementation "androidx.room:room-runtime:$room_version"
|
|
implementation "androidx.room:room-ktx:$room_version"
|
|
kapt "androidx.room:room-compiler:$room_version"
|
|
|
|
implementation "androidx.hilt:hilt-lifecycle-viewmodel:$hilt_viewmodel_version"
|
|
implementation "com.google.dagger:hilt-android:$hilt_version"
|
|
kapt "com.google.dagger:hilt-android-compiler:$hilt_version"
|
|
kapt "androidx.hilt:hilt-compiler:$hilt_viewmodel_version"
|
|
|
|
implementation "com.squareup.retrofit2:retrofit:$retrofit_version"
|
|
implementation "com.squareup.retrofit2:converter-moshi:$retrofit_version"
|
|
|
|
implementation "org.osmdroid:osmdroid-android:$osmdroid_version"
|
|
implementation "com.github.davidmoten:predict4java:$predict4java_version"
|
|
|
|
debugImplementation "com.squareup.leakcanary:leakcanary-android:$leak_canary_version"
|
|
|
|
testImplementation "junit:junit:$junit_version"
|
|
}
|