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

android {
    compileSdkVersion 22
    buildToolsVersion "22.0.1"

    defaultConfig {
        applicationId "de.apps4ics.mountainnavigation"
        minSdkVersion 11
        targetSdkVersion 22
        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:22.2.1'
    compile 'com.android.support:design:22.2.1'
    compile 'com.survivingwithandroid:weatherlib:1.5.8'
    compile 'com.survivingwithandroid:weatherlib_okhttpclient:1.5.8'
    compile 'com.squareup.okhttp:okhttp:2.0.+'
    compile (name:'osmbonuspack_v5.4', ext:'aar')
    compile 'org.slf4j:slf4j-log4j12:1.7.12'
    compile 'org.osmdroid:osmdroid-android:4.3'
    compile 'org.apache.commons:commons-lang3:3.3.2'
    compile 'com.google.code.gson:gson:2.3'
}

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