Newer
Older
mountainnavigation / app / build.gradle
apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion '25.0.0'

    defaultConfig {
        applicationId "de.apps4ics.mountainnavigation"
        minSdkVersion 21
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.2.1'
    compile 'com.android.support:design:23.2.1'
    compile 'com.google.android.gms:play-services-location:8.4.0'
    compile 'com.survivingwithandroid:weatherlib:1.6.0'
    compile 'com.survivingwithandroid:weatherlib_okhttpclient:1.6.0'
    compile 'com.squareup.okhttp:okhttp:2.0.+'
    // compile 'com.diogobernardino:williamchart:2.2'
    compile 'com.diogobernardino:williamchart:2.4.0' //TODO update to latest WC
    // compile (name:'osmbonuspack_v5.7', ext:'aar')
    compile 'com.github.MKergall:osmbonuspack:6.3' //TODO update to latest osm
    //compile 'org.slf4j:slf4j-log4j12:1.7.12'
    // compile 'org.osmdroid:osmdroid-android:5.1@aar'
    compile 'org.osmdroid:osmdroid-android:5.6.4' //TODO update to latest osm
    compile 'org.apache.commons:commons-lang3:3.3.2'
    compile 'com.google.code.gson:gson:2.4'
}

repositories {
    mavenCentral()
    flatDir {
        dirs 'libs'
    }
}