mirror of
				https://github.com/russok/FitoTrack.git
				synced 2025-10-29 00:32:11 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			102 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			102 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020 Jannis Scheibe <jannis@tadris.de>
 | |
|  *
 | |
|  * This file is part of FitoTrack
 | |
|  *
 | |
|  * FitoTrack 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.
 | |
|  *
 | |
|  *     FitoTrack 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/>.
 | |
|  */
 | |
| 
 | |
| apply plugin: 'com.android.application'
 | |
| 
 | |
| allprojects {
 | |
|     dependencies {
 | |
|         repositories {
 | |
|             jcenter()
 | |
|             maven { url 'https://jitpack.io' }
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 | |
| android {
 | |
|     compileSdkVersion 28
 | |
|     buildToolsVersion "29.0.2"
 | |
|     defaultConfig {
 | |
|         applicationId "de.tadris.fitness"
 | |
|         minSdkVersion 21
 | |
|         targetSdkVersion 28
 | |
|         versionCode 420
 | |
|         versionName "4.2"
 | |
|         testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
 | |
|     }
 | |
|     buildTypes {
 | |
|         release {
 | |
|             minifyEnabled false
 | |
|             proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
 | |
|         }
 | |
|     }
 | |
|     compileOptions {
 | |
|         sourceCompatibility = '1.8'
 | |
|         targetCompatibility = '1.8'
 | |
|     }
 | |
|     lintOptions {
 | |
|         checkReleaseBuilds false
 | |
|         // Or, if you prefer, you can continue to check for errors in release builds,
 | |
|         // but continue the build even when errors are found:
 | |
| //        abortOnError false
 | |
|     }
 | |
| }
 | |
| 
 | |
| dependencies {
 | |
|     implementation fileTree(dir: 'libs', include: ['*.jar'])
 | |
| 
 | |
|     // Android
 | |
|     implementation 'com.android.support.constraint:constraint-layout:1.1.3'
 | |
|     implementation 'androidx.recyclerview:recyclerview:1.0.0'
 | |
|     implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
 | |
| 
 | |
|     // Maps provider
 | |
|     implementation 'org.mapsforge:mapsforge-core:0.11.0'
 | |
|     implementation 'org.mapsforge:mapsforge-map:0.11.0'
 | |
|     implementation 'org.mapsforge:mapsforge-map-reader:0.11.0'
 | |
|     implementation 'org.mapsforge:mapsforge-themes:0.11.0'
 | |
|     implementation 'org.mapsforge:mapsforge-map-android:0.11.0'
 | |
|     implementation 'com.caverock:androidsvg:1.3'
 | |
| 
 | |
|     // Charts
 | |
|     implementation 'net.sf.kxml:kxml2:2.3.0'
 | |
|     implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
 | |
|     implementation 'com.github.clans:fab:1.6.4'
 | |
| 
 | |
|     // XML
 | |
|     implementation 'stax:stax-api:1.0.1'
 | |
|     implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.9.8'
 | |
| 
 | |
|     // File Utils
 | |
|     implementation 'commons-io:commons-io:2.6'
 | |
| 
 | |
|     // Upload to OSM
 | |
|     implementation('de.westnordost:osmapi-traces:1.0')
 | |
|     configurations {
 | |
|         compile.exclude group: 'net.sf.kxml', module: 'kxml2' // already included in Android
 | |
|     }
 | |
| 
 | |
|     // Android Room Database
 | |
|     def room_version = "2.2.0"
 | |
|     annotationProcessor "androidx.room:room-compiler:$room_version"
 | |
|     implementation "androidx.room:room-runtime:$room_version"
 | |
| 
 | |
|     testImplementation 'junit:junit:4.12'
 | |
|     androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
 | |
| }
 | 
