kopia lustrzana https://github.com/rt-bishop/Look4Sat
				
				
				
			
		
			
				
	
	
		
			86 wiersze
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Groovy
		
	
	
			
		
		
	
	
			86 wiersze
		
	
	
		
			3.0 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.
 | 
						|
 */
 | 
						|
 | 
						|
apply plugin: "com.android.application"
 | 
						|
apply plugin: "kotlin-android"
 | 
						|
apply plugin: "kotlin-kapt"
 | 
						|
apply plugin: "kotlin-android-extensions"
 | 
						|
apply plugin: "dagger.hilt.android.plugin"
 | 
						|
apply plugin: "androidx.navigation.safeargs.kotlin"
 | 
						|
 | 
						|
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 = 1.8
 | 
						|
        targetCompatibility = 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"
 | 
						|
}
 |